|
@@ -180,17 +180,36 @@
|
|
|
|
|
|
<plugins>
|
|
|
<plugin>
|
|
|
- <groupId>org.codehaus.mojo</groupId>
|
|
|
- <artifactId>cobertura-maven-plugin</artifactId>
|
|
|
- <version>2.7</version>
|
|
|
- <configuration>
|
|
|
- <formats>
|
|
|
- <format>html</format>
|
|
|
- <format>xml</format>
|
|
|
- </formats>
|
|
|
- <check />
|
|
|
- </configuration>
|
|
|
+ <groupId>org.jacoco</groupId>
|
|
|
+ <artifactId>jacoco-maven-plugin</artifactId>
|
|
|
+ <version>0.8.0</version>
|
|
|
+ <executions>
|
|
|
+ <execution>
|
|
|
+ <goals>
|
|
|
+ <goal>prepare-agent</goal>
|
|
|
+ </goals>
|
|
|
+ </execution>
|
|
|
+ <execution>
|
|
|
+ <id>report</id>
|
|
|
+ <phase>test</phase>
|
|
|
+ <goals>
|
|
|
+ <goal>report</goal>
|
|
|
+ </goals>
|
|
|
+ </execution>
|
|
|
+ </executions>
|
|
|
</plugin>
|
|
|
+ <!--<plugin>-->
|
|
|
+ <!--<groupId>org.codehaus.mojo</groupId>-->
|
|
|
+ <!--<artifactId>cobertura-maven-plugin</artifactId>-->
|
|
|
+ <!--<version>2.7</version>-->
|
|
|
+ <!--<configuration>-->
|
|
|
+ <!--<formats>-->
|
|
|
+ <!--<format>html</format>-->
|
|
|
+ <!--<format>xml</format>-->
|
|
|
+ <!--</formats>-->
|
|
|
+ <!--<check />-->
|
|
|
+ <!--</configuration>-->
|
|
|
+ <!--</plugin>-->
|
|
|
|
|
|
|
|
|
<plugin>
|