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:
parent
a0acabc125
commit
276799a968
11
pom.xml
11
pom.xml
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in New Issue