You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by ha...@apache.org on 2011/11/22 05:11:27 UTC

svn commit: r1204806 - /geronimo/devtools/eclipse-plugin/trunk/pom.xml

Author: hanhongfang
Date: Tue Nov 22 04:11:25 2011
New Revision: 1204806

URL: http://svn.apache.org/viewvc?rev=1204806&view=rev
Log:
GERONIMODEVTOOLS-776 Using excluds in rat-maven-plugin to exclude the file whoes license header is not required

Modified:
    geronimo/devtools/eclipse-plugin/trunk/pom.xml

Modified: geronimo/devtools/eclipse-plugin/trunk/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/trunk/pom.xml?rev=1204806&r1=1204805&r2=1204806&view=diff
==============================================================================
--- geronimo/devtools/eclipse-plugin/trunk/pom.xml (original)
+++ geronimo/devtools/eclipse-plugin/trunk/pom.xml Tue Nov 22 04:11:25 2011
@@ -317,7 +317,23 @@
 					<groupId>org.apache.maven.plugins</groupId>
 					<artifactId>maven-remote-resources-plugin</artifactId>
 					<version>1.1</version>
-				</plugin>                      
+				</plugin>
+                <plugin>
+                    <groupId>org.codehaus.mojo</groupId>
+                    <artifactId>rat-maven-plugin</artifactId>
+                    <version>1.0-alpha-3</version>
+                    <configuration>
+                        <excludes>
+                            <exclude>**/MANIFEST.MF</exclude>
+                            <exclude>**/.classpath</exclude>
+                            <exclude>**/.options</exclude>
+                            <exclude>**/.project</exclude>
+                            <exclude>**/velocity.log</exclude>
+                            <exclude>**/PLUGIN_RELEASE-NOTES*.txt</exclude>
+                            <exclude>**/target/**</exclude>
+                        </excludes>
+                    </configuration>
+                </plugin>                      
            </plugins>
 
         </pluginManagement>