You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2017/09/08 05:44:04 UTC

svn commit: r1807672 - /maven/pom/trunk/maven/pom.xml

Author: hboutemy
Date: Fri Sep  8 05:44:03 2017
New Revision: 1807672

URL: http://svn.apache.org/viewvc?rev=1807672&view=rev
Log:
added excludes for .repository/ directory that may be created by CI

Modified:
    maven/pom/trunk/maven/pom.xml

Modified: maven/pom/trunk/maven/pom.xml
URL: http://svn.apache.org/viewvc/maven/pom/trunk/maven/pom.xml?rev=1807672&r1=1807671&r2=1807672&view=diff
==============================================================================
--- maven/pom/trunk/maven/pom.xml (original)
+++ maven/pom/trunk/maven/pom.xml Fri Sep  8 05:44:03 2017
@@ -1085,6 +1085,11 @@ under the License.
       <plugin>
         <groupId>org.apache.rat</groupId>
         <artifactId>apache-rat-plugin</artifactId>
+        <configuration>
+          <excludes combine.children="append">
+            <exclude>.repository/**</exclude><!-- for CI -->
+          </excludes>
+        </configuration>
         <executions>
           <execution>
             <id>rat-check</id>