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 04:33:07 UTC

svn commit: r1204795 - /geronimo/devtools/eclipse-plugin/branches/2.2/pom.xml

Author: hanhongfang
Date: Tue Nov 22 03:33:06 2011
New Revision: 1204795

URL: http://svn.apache.org/viewvc?rev=1204795&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/branches/2.2/pom.xml

Modified: geronimo/devtools/eclipse-plugin/branches/2.2/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/branches/2.2/pom.xml?rev=1204795&r1=1204794&r2=1204795&view=diff
==============================================================================
--- geronimo/devtools/eclipse-plugin/branches/2.2/pom.xml (original)
+++ geronimo/devtools/eclipse-plugin/branches/2.2/pom.xml Tue Nov 22 03:33:06 2011
@@ -312,7 +312,23 @@
                     <artifactId>maven-remote-resources-plugin</artifactId>
                     <version>1.1</version>
                 </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>