Skip to content

Commit

Permalink
introducing jacoco
Browse files Browse the repository at this point in the history
  • Loading branch information
pdelebarre committed Aug 26, 2024
1 parent c9e21c2 commit 5811ca9
Showing 1 changed file with 35 additions and 1 deletion.
36 changes: 35 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,41 @@
</excludes>
</configuration>
</plugin>

</plugins>
</build>

<profiles>
<profile>
<id>coverage</id>
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.7</version>
<executions>
<execution>
<id>prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<goals>
<goal>report</goal>
</goals>
<configuration>
<formats>
<format>XML</format>
</formats>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>

</project>

0 comments on commit 5811ca9

Please sign in to comment.