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/03/13 20:45:11 UTC

svn commit: r1300304 - /commons/proper/io/trunk/pom.xml

Author: sebb
Date: Tue Mar 13 19:45:11 2012
New Revision: 1300304

URL: http://svn.apache.org/viewvc?rev=1300304&view=rev
Log:
Fix up clirr and checkstyle versions
Add RAT excludes

Modified:
    commons/proper/io/trunk/pom.xml

Modified: commons/proper/io/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/io/trunk/pom.xml?rev=1300304&r1=1300303&r2=1300304&view=diff
==============================================================================
--- commons/proper/io/trunk/pom.xml (original)
+++ commons/proper/io/trunk/pom.xml Tue Mar 13 19:45:11 2012
@@ -233,6 +233,8 @@
     <commons.release.2.desc>(requires JDK 1.3+)</commons.release.2.desc>
     <commons.jira.id>IO</commons.jira.id>
     <commons.jira.pid>12310477</commons.jira.pid>
+    <!-- temporary override of parent -->
+    <commons.clirr.version>2.4</commons.clirr.version>
   </properties>
 
   <build>
@@ -275,7 +277,7 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-checkstyle-plugin</artifactId>
-        <version>2.9</version>
+        <version>2.9.1</version>
         <configuration>
           <configLocation>${basedir}/checkstyle.xml</configLocation>
           <enableRulesSummary>false</enableRulesSummary>
@@ -316,6 +318,16 @@
           </reportSet>
         </reportSets>
       </plugin>
+      <plugin>
+        <groupId>org.apache.rat</groupId>
+        <artifactId>apache-rat-plugin</artifactId>
+        <configuration>
+          <excludes>
+            <exclude>src/test/resources/**/*.bin</exclude>
+            <exclude>.pmd</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
     </plugins>
   </reporting>
 </project>