You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by de...@apache.org on 2013/09/15 20:51:54 UTC

svn commit: r1523474 - /maven/shared/trunk/maven-dependency-tree/pom.xml

Author: dennisl
Date: Sun Sep 15 18:51:54 2013
New Revision: 1523474

URL: http://svn.apache.org/r1523474
Log:
Configure explicit RAT exclusions for the files that cannot contain a license header.
This component now passes the checks done by RAT.

Modified:
    maven/shared/trunk/maven-dependency-tree/pom.xml

Modified: maven/shared/trunk/maven-dependency-tree/pom.xml
URL: http://svn.apache.org/viewvc/maven/shared/trunk/maven-dependency-tree/pom.xml?rev=1523474&r1=1523473&r2=1523474&view=diff
==============================================================================
--- maven/shared/trunk/maven-dependency-tree/pom.xml (original)
+++ maven/shared/trunk/maven-dependency-tree/pom.xml Sun Sep 15 18:51:54 2013
@@ -165,6 +165,23 @@
           </execution>
         </executions>
       </plugin>
+      <plugin>
+        <groupId>org.apache.rat</groupId>
+        <artifactId>apache-rat-plugin</artifactId>
+        <version>0.10</version>
+        <configuration>
+          <excludes>
+            <!--
+              These files contains the expected output of this component and can not contain a license header.
+            -->
+            <exclude>src/it/maven-version/expected.txt</exclude>
+            <exclude>src/it/mshared-167/expected-M2.txt</exclude>
+            <exclude>src/it/mshared-167/expected-M3.txt</exclude>
+            <exclude>src/it/verbose/expected-default.txt</exclude>
+            <exclude>src/it/verbose/expected-verbose.txt</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
     </plugins>
   </build>