Skip to content

Commit

Permalink
build(maven): add jacoco for code coverage report
Browse files Browse the repository at this point in the history
  • Loading branch information
teebow1e committed Jun 21, 2024
1 parent 1ee80e1 commit a45fc8f
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
Binary file added GeoLite2-Country.mmdb
Binary file not shown.
19 changes: 19 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,25 @@
</descriptorRefs>
</configuration>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.12</version>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>verify</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>

</plugins>
</build>
Expand Down

0 comments on commit a45fc8f

Please sign in to comment.