Browse Source

Add support for coverage in sonar (#565)

pull/566/head
Decebal Suiu 10 months ago committed by GitHub
parent
commit
6b20660c36
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 25
      pf4j/pom.xml

25
pf4j/pom.xml

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