Author: sebb Date: Sat Apr 30 12:45:46 2016 New Revision: 1741759 URL: http://svn.apache.org/viewvc?rev=1741759&view=rev Log: Parent defines the build-helper-plugin version Allow Findbugs in CLI mode
Modified: commons/proper/net/trunk/pom.xml Modified: commons/proper/net/trunk/pom.xml URL: http://svn.apache.org/viewvc/commons/proper/net/trunk/pom.xml?rev=1741759&r1=1741758&r2=1741759&view=diff ============================================================================== --- commons/proper/net/trunk/pom.xml (original) +++ commons/proper/net/trunk/pom.xml Sat Apr 30 12:45:46 2016 @@ -196,6 +196,15 @@ Supported protocols include: Echo, Finge <build> <pluginManagement> <plugins> + <!-- Allow CLI usage --> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>findbugs-maven-plugin</artifactId> + <version>${commons.findbugs.version}</version> + <configuration> + <excludeFilterFile>findbugs-exclude-filter.xml</excludeFilterFile> + </configuration> + </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> @@ -208,11 +217,6 @@ Supported protocols include: Echo, Finge </configuration> </plugin> <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>build-helper-maven-plugin</artifactId> - <version>1.9.1</version> - </plugin> - <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>${checkstyle.plugin.version}</version> @@ -455,7 +459,7 @@ Supported protocols include: Echo, Finge <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> - <version>3.0.2</version> + <version>${commons.findbugs.version}</version> <configuration> <excludeFilterFile>findbugs-exclude-filter.xml</excludeFilterFile> </configuration>