瀏覽代碼

Add support for coverage in sonar

pull/565/head
Decebal Suiu 3 月之前
父節點
當前提交
c055ee47f6
共有 1 個文件被更改,包括 25 次插入0 次删除
  1. 25
    0
      pf4j/pom.xml

+ 25
- 0
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…
取消
儲存