Skip to content

Commit

Permalink
chore: add JaCoCo code coverage plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
phmz committed May 20, 2024
1 parent 434329b commit f3d11d5
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -135,9 +135,27 @@
<failOnError>false</failOnError>
</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>test</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

<scm>
<connection>scm:git:https://github.com/sipios/spring-data-event.git</connection>
<developerConnection>scm:git:[email protected]:sipios/spring-data-event.git</developerConnection>
Expand Down

0 comments on commit f3d11d5

Please sign in to comment.