Moved maven-jxr-plugin and maven-project-info-reports-plugin reporting declarations into the parent pom. No need to duplicate in child modules. Utils did not have project-info reports, but there does not seem to be a good reason. Also note that the JXR plugin is naturally skipped when it does not apply (there is no java code), so not necessary to explicitly skip it for gradle and jenkins modules.

This commit is contained in:
Anthony Whitford
2015-09-05 23:57:53 -07:00
parent d74218004a
commit e433809f4d
6 changed files with 7 additions and 71 deletions

11
pom.xml
View File

@@ -133,12 +133,9 @@ Copyright (c) 2012 - Jeremy Long
<reporting.cobertura-plugin.version>2.6</reporting.cobertura-plugin.version>
<reporting.findbugs-plugin.version>3.0.1</reporting.findbugs-plugin.version>
<reporting.javadoc-plugin.version>2.10.3</reporting.javadoc-plugin.version>
<reporting.jxr-plugin.version>2.5</reporting.jxr-plugin.version>
<!-- 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>
<!-- TODO(code review) project-info-reports-plugin was/is not used in utils. Expected/intended? -->
<reporting.project-info-reports-plugin.version>2.8</reporting.project-info-reports-plugin.version>
<reporting.surefire-report-plugin.version>2.18.1</reporting.surefire-report-plugin.version>
<reporting.taglist-plugin.version>2.4</reporting.taglist-plugin.version>
<reporting.versions-plugin.version>2.2</reporting.versions-plugin.version>
@@ -366,10 +363,15 @@ Copyright (c) 2012 - Jeremy Long
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
<version>2.5</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>${reporting.project-info-reports-plugin.version}</version>
<version>2.8</version>
<reportSets>
<reportSet>
<reports>
@@ -393,6 +395,7 @@ Copyright (c) 2012 - Jeremy Long
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
<dependencyManagement>