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:37:54 UTC

svn commit: r1204796 - /geronimo/devtools/eclipse-plugin/branches/2.1/pom.xml

Author: hanhongfang
Date: Tue Nov 22 03:37:53 2011
New Revision: 1204796

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

Modified: geronimo/devtools/eclipse-plugin/branches/2.1/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/branches/2.1/pom.xml?rev=1204796&r1=1204795&r2=1204796&view=diff
==============================================================================
--- geronimo/devtools/eclipse-plugin/branches/2.1/pom.xml (original)
+++ geronimo/devtools/eclipse-plugin/branches/2.1/pom.xml Tue Nov 22 03:37:53 2011
@@ -316,11 +316,30 @@
                         <skip>true</skip>
                     </configuration>
                 </plugin>
-								<plugin>
-										<groupId>org.apache.maven.plugins</groupId>
-										<artifactId>maven-remote-resources-plugin</artifactId>
-										<version>1.1</version>
-								</plugin>                      
+                
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <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>