You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2012/02/13 04:03:53 UTC

svn commit: r1243401 - /commons/proper/net/trunk/pom.xml

Author: sebb
Date: Mon Feb 13 03:03:53 2012
New Revision: 1243401

URL: http://svn.apache.org/viewvc?rev=1243401&view=rev
Log:
Update to latest checkstyle plugin
Add work-round to suppress useless checkstyle aggregate report
Specify findbugs version

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=1243401&r1=1243400&r2=1243401&view=diff
==============================================================================
--- commons/proper/net/trunk/pom.xml (original)
+++ commons/proper/net/trunk/pom.xml Mon Feb 13 03:03:53 2012
@@ -340,6 +340,7 @@ Supported protocols include: Echo, Finge
             <plugin>
                 <groupId>org.codehaus.mojo</groupId>
                 <artifactId>findbugs-maven-plugin</artifactId>
+                <version>2.3.2</version>
                 <configuration>
                     <excludeFilterFile>findbugs-exclude-filter.xml</excludeFilterFile>
                 </configuration>
@@ -366,12 +367,20 @@ Supported protocols include: Echo, Finge
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-checkstyle-plugin</artifactId>
-                <version>2.8</version>
+                <version>2.9</version>
                 <configuration>
                     <configLocation>${basedir}/checkstyle.xml</configLocation>
                     <suppressionsLocation>${basedir}/checkstyle-suppressions.xml</suppressionsLocation>
                     <enableRulesSummary>false</enableRulesSummary>
                 </configuration>
+                <!-- Workround for CHECKSTYLE-167/172 -->
+                <reportSets>
+                  <reportSet>
+                    <reports>
+                      <report>checkstyle</report>
+                    </reports>
+                  </reportSet>
+                </reportSets>
             </plugin>
 
         </plugins>