Skip to content

Commit

Permalink
add jacoco
Browse files Browse the repository at this point in the history
  • Loading branch information
BlazingTwist committed Jan 29, 2024
1 parent 4288ab4 commit 4a50814
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,27 @@
<destDir>java-docs</destDir>
</configuration>
</plugin>

<!-- Test Coverage Report -->
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.11</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>

Expand Down

0 comments on commit 4a50814

Please sign in to comment.