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:44:00 UTC

svn commit: r1523473 - /maven/shared/trunk/maven-verifier/pom.xml

Author: dennisl
Date: Sun Sep 15 18:44:00 2013
New Revision: 1523473

URL: http://svn.apache.org/r1523473
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/shared/trunk/maven-verifier/pom.xml

Modified: maven/shared/trunk/maven-verifier/pom.xml
URL: http://svn.apache.org/viewvc/maven/shared/trunk/maven-verifier/pom.xml?rev=1523473&r1=1523472&r2=1523473&view=diff
==============================================================================
--- maven/shared/trunk/maven-verifier/pom.xml (original)
+++ maven/shared/trunk/maven-verifier/pom.xml Sun Sep 15 18:44:00 2013
@@ -62,4 +62,24 @@
       <version>3.8.2</version>
     </dependency>
   </dependencies>
+
+  <build>
+    <pluginManagement>
+      <plugins>
+        <plugin>
+          <groupId>org.apache.rat</groupId>
+          <artifactId>apache-rat-plugin</artifactId>
+          <version>0.10</version>
+          <configuration>
+            <excludes>
+              <!--
+                The manifest specification does not describe any method for writing comments into the manifest.
+              -->
+              <exclude>src/test/resources/META-INF/MANIFEST.MF</exclude>
+            </excludes>
+          </configuration>
+        </plugin>
+      </plugins>
+    </pluginManagement>
+  </build>
 </project>