You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cayenne.apache.org by am...@apache.org on 2013/07/04 02:01:59 UTC

svn commit: r1499609 - /cayenne/main/trunk/pom.xml

Author: amaniatis
Date: Thu Jul  4 00:01:59 2013
New Revision: 1499609

URL: http://svn.apache.org/r1499609
Log:
Add RAT to our top level pom for easy execution. Just do this:

     mvn rat:check

and the output can be seen at target/rat.txt

Modified:
    cayenne/main/trunk/pom.xml

Modified: cayenne/main/trunk/pom.xml
URL: http://svn.apache.org/viewvc/cayenne/main/trunk/pom.xml?rev=1499609&r1=1499608&r2=1499609&view=diff
==============================================================================
--- cayenne/main/trunk/pom.xml (original)
+++ cayenne/main/trunk/pom.xml Thu Jul  4 00:01:59 2013
@@ -691,6 +691,25 @@
 				<artifactId>exec-maven-plugin</artifactId>
 				<version>1.2</version>
 			</plugin>
+			<plugin>
+				<groupId>org.apache.rat</groupId>
+				<artifactId>apache-rat-plugin</artifactId>
+				<version>0.8</version>
+				<configuration>
+					<excludes>
+						<exclude>**/target</exclude>
+						<exclude>**/MANIFEST.MF</exclude>
+						<exclude>**/*.plist</exclude>
+						<exclude>**/*.graffle</exclude>
+						<exclude>**/.*</exclude>
+						<exclude>**/.*/**</exclude>
+						<exclude>**/CLOVER.txt</exclude>
+						<exclude>**/*.map.xml</exclude>
+						<exclude>**/*.css</exclude>
+						<exclude>**/*.properties</exclude>
+					</excludes>
+				</configuration>
+			</plugin>
 		</plugins>
 	</build>
 	<distributionManagement>