Update cobertura-maven-plugin to 2.7, issue #916

In version 2.7 the new `cobertura-integration-test` report is generated by
default.
As Checkstyle doesn't have `integration-test` phase, just `cobertura`
report is enough and this needs to be set explicitly.
This commit is contained in:
Michal Kordas 2015-05-03 17:41:24 +02:00
parent a0acabc125
commit 276799a968
1 changed files with 9 additions and 2 deletions

11
pom.xml
View File

@ -611,7 +611,7 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.6</version>
<version>2.7</version>
<configuration>
<format>xml</format>
<check>
@ -995,7 +995,14 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.6</version>
<version>2.7</version>
<reportSets>
<reportSet>
<reports>
<report>cobertura</report>
</reports>
</reportSet>
</reportSets>
<configuration>
<formats>
<format>xml</format>