Browse Source

Add support for coverage in sonar

pull/565/head
Decebal Suiu 3 months ago
parent
commit
c055ee47f6
1 changed files with 25 additions and 0 deletions
  1. 25
    0
      pf4j/pom.xml

+ 25
- 0
pf4j/pom.xml View File

@@ -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>


Loading…
Cancel
Save