Skip to content

Commit

Permalink
Add support for coverage in sonar (#565)
Browse files Browse the repository at this point in the history
  • Loading branch information
decebals authored Feb 5, 2024
1 parent bdd404b commit 6b20660
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions pf4j/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,31 @@
</execution>
</executions>
</plugin>
<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>

Expand Down

0 comments on commit 6b20660

Please sign in to comment.