1
0
mirror of https://github.com/pcvolkmer/onkostar-plugin-dnpm.git synced 2025-07-02 09:12:54 +00:00

Maven JaCoCo-Plugin hinzugefügt

This commit is contained in:
2023-10-12 18:37:12 +02:00
parent 1b27a9c290
commit a83d42fd17
2 changed files with 33 additions and 0 deletions

19
pom.xml
View File

@ -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>