Centralized the maven-surefire-report-plugin to the parent pom. Note that gradle and jenkins modules are skipped since it does not apply.

This commit is contained in:
Anthony Whitford
2015-09-06 12:56:36 -07:00
parent 51e66354b0
commit d0f884f5b2
8 changed files with 21 additions and 55 deletions

13
pom.xml
View File

@@ -135,7 +135,6 @@ Copyright (c) 2012 - Jeremy Long
<!-- todo(code review): only used in maven module? Not needed elsewhere -->
<reporting.maven-plugin-plugin.version>3.4</reporting.maven-plugin-plugin.version>
<reporting.pmd-plugin.version>3.5</reporting.pmd-plugin.version>
<reporting.surefire-report-plugin.version>2.18.1</reporting.surefire-report-plugin.version>
<reporting.versions-plugin.version>2.2</reporting.versions-plugin.version>
</properties>
<distributionManagement>
@@ -393,6 +392,18 @@ Copyright (c) 2012 - Jeremy Long
</reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>2.18.1</version>
<reportSets>
<reportSet>
<reports>
<report>report-only</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>