summaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorPaul-Christian Volkmer2023-10-12 18:37:12 +0200
committerPaul-Christian Volkmer2023-10-12 18:37:12 +0200
commita83d42fd17b6cba75287cd226478260a28019e39 (patch)
treeab3af479648af5e6af428ae74be723c6a36a5ac3 /pom.xml
parent1b27a9c290c435d483226ae9a79e2f17fffe60ac (diff)
Maven JaCoCo-Plugin hinzugefügt
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml19
1 files changed, 19 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index d5d677c..419f002 100644
--- a/pom.xml
+++ b/pom.xml
@@ -216,6 +216,25 @@
</execution>
</executions>
</plugin>
+ <plugin>
+ <groupId>org.jacoco</groupId>
+ <artifactId>jacoco-maven-plugin</artifactId>
+ <version>0.8.10</version>
+ <executions>
+ <execution>
+ <goals>
+ <goal>prepare-agent</goal>
+ </goals>
+ </execution>
+ <execution>
+ <id>report</id>
+ <phase>prepare-package</phase>
+ <goals>
+ <goal>report</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</build>