Skip to content

Commit

Permalink
Add jacoco maven plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
decebals committed May 10, 2024
1 parent a460d35 commit ef514c6
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions pf4j-spring/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,36 @@
<sonar.projectKey>pf4j_pf4j-spring</sonar.projectKey>
</properties>

<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.11</version>
<executions>
<execution>
<id>prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
<configuration>
<formats>
<format>XML</format>
</formats>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>org.pf4j</groupId>
Expand Down

0 comments on commit ef514c6

Please sign in to comment.