Centralized the findbugs-maven-plugin to the parent pom. Gradle and Jenkins modules skip it naturally. The onlyAnlyze setting for utils is maintained via a property. Also was able to upgrade to latest plugin, version 3.0.2.

This commit is contained in:
Anthony Whitford
2015-09-06 00:51:28 -07:00
parent 9b92007eff
commit 5c53b6528f
6 changed files with 7 additions and 29 deletions

View File

@@ -131,7 +131,7 @@ Copyright (c) 2012 - Jeremy Long
<logback.version>1.1.3</logback.version>
<reporting.checkstyle-plugin.version>2.16</reporting.checkstyle-plugin.version>
<reporting.cobertura-plugin.version>2.7</reporting.cobertura-plugin.version>
<reporting.findbugs-plugin.version>3.0.1</reporting.findbugs-plugin.version>
<reporting.findbugs-plugin.version>3.0.2</reporting.findbugs-plugin.version>
<reporting.javadoc-plugin.version>2.10.3</reporting.javadoc-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>
@@ -407,6 +407,11 @@ Copyright (c) 2012 - Jeremy Long
</reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>${reporting.findbugs-plugin.version}</version>
</plugin>
</plugins>
</reporting>
<dependencyManagement>