You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2018/07/31 02:11:11 UTC

svn commit: r1837106 - /commons/proper/configuration/trunk/pom.xml

Author: ggregory
Date: Tue Jul 31 02:11:11 2018
New Revision: 1837106

URL: http://svn.apache.org/viewvc?rev=1837106&view=rev
Log:
Allow 'mvn apache-rat:check' to work with the proper exclusions.

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

Modified: commons/proper/configuration/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/configuration/trunk/pom.xml?rev=1837106&r1=1837105&r2=1837106&view=diff
==============================================================================
--- commons/proper/configuration/trunk/pom.xml (original)
+++ commons/proper/configuration/trunk/pom.xml Tue Jul 31 02:11:11 2018
@@ -705,6 +705,18 @@
           </archive>
         </configuration>
       </plugin>
+      <plugin>
+        <groupId>org.apache.rat</groupId>
+        <artifactId>apache-rat-plugin</artifactId>
+        <configuration>
+          <excludes>
+            <exclude>src/java/org/apache/commons/configuration2/plist/*.java</exclude>
+            <exclude>velocity.log</exclude>
+            <exclude>src/test/resources/test.json</exclude>
+            <exclude>src/test/resources/test.yaml</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
     </plugins>
 
   </build>