Explorar el Código

Add support for coverage in sonar

pull/565/head
Decebal Suiu hace 4 meses
padre
commit
c055ee47f6
Se han modificado 1 ficheros con 25 adiciones y 0 borrados
  1. 25
    0
      pf4j/pom.xml

+ 25
- 0
pf4j/pom.xml Ver fichero

</execution> </execution>
</executions> </executions>
</plugin> </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> </plugins>
</build> </build>



Cargando…
Cancelar
Guardar