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/04/14 02:16:48 UTC

svn commit: r1326028 - /commons/proper/pool/trunk/pom.xml

Author: sebb
Date: Sat Apr 14 00:16:48 2012
New Revision: 1326028

URL: http://svn.apache.org/viewvc?rev=1326028&view=rev
Log:
Exclude non-commentable test and auto-config files from RAT

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

Modified: commons/proper/pool/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/pool/trunk/pom.xml?rev=1326028&r1=1326027&r2=1326028&view=diff
==============================================================================
--- commons/proper/pool/trunk/pom.xml (original)
+++ commons/proper/pool/trunk/pom.xml Sat Apr 14 00:16:48 2012
@@ -229,6 +229,19 @@
         <artifactId>cobertura-maven-plugin</artifactId>
         <version>2.5.1</version>
       </plugin>
-      </plugins>
+      <plugin>
+        <groupId>org.apache.rat</groupId>
+        <artifactId>apache-rat-plugin</artifactId>
+        <configuration>
+          <excludes>
+            <exclude>src/test/java/org/apache/commons/pool2/impl/test1</exclude>
+            <exclude>src/test/java/org/apache/commons/pool2/impl/test2</exclude>
+            <exclude>.checkstyle</exclude>
+            <exclude>.fbprefs</exclude>
+            <exclude>.pmd</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+    </plugins>
     </reporting>
 </project>