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/14 22:31:12 UTC

svn commit: r1523312 - /maven/plugins/trunk/maven-project-info-reports-plugin/pom.xml

Author: dennisl
Date: Sat Sep 14 20:31:11 2013
New Revision: 1523312

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

Modified:
    maven/plugins/trunk/maven-project-info-reports-plugin/pom.xml

Modified: maven/plugins/trunk/maven-project-info-reports-plugin/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-project-info-reports-plugin/pom.xml?rev=1523312&r1=1523311&r2=1523312&view=diff
==============================================================================
--- maven/plugins/trunk/maven-project-info-reports-plugin/pom.xml (original)
+++ maven/plugins/trunk/maven-project-info-reports-plugin/pom.xml Sat Sep 14 20:31:11 2013
@@ -405,6 +405,19 @@ under the License.
           </configuration>
         </plugin>
         <plugin>
+          <groupId>org.apache.rat</groupId>
+          <artifactId>apache-rat-plugin</artifactId>
+          <version>0.10</version>
+          <configuration>
+            <excludes>
+              <!--
+                This is a plugin-specific data file that must only contain the file names of available resources.
+              -->
+              <exclude>src/main/resources/org/apache/maven/report/projectinfo/resources/resources.txt</exclude>
+            </excludes>
+          </configuration>
+        </plugin>
+        <plugin>
           <groupId>org.codehaus.mojo</groupId>
           <artifactId>keytool-maven-plugin</artifactId>
           <version>1.0</version>