From 3d5793297b98e877d75abccfd8b89fb3cd901c8c Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Sat, 18 Nov 2023 14:06:04 +0100 Subject: [PATCH] Add jacoco maven plugin This automatically generates a code coverage report on every execution of `mvn test`. --- pom.xml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/pom.xml b/pom.xml index 735f82b..9c557c9 100644 --- a/pom.xml +++ b/pom.xml @@ -63,4 +63,29 @@ + + + + org.jacoco + jacoco-maven-plugin + 0.8.11 + + + prepare-agent + + prepare-agent + + + + report + test + + report + + + + + + +