You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mina.apache.org by el...@apache.org on 2012/08/21 14:57:35 UTC

svn commit: r1375515 - /mina/branches/2.0/pom.xml

Author: elecharny
Date: Tue Aug 21 12:57:35 2012
New Revision: 1375515

URL: http://svn.apache.org/viewvc?rev=1375515&view=rev
Log:
added some exclusions for the apache-rat plugin

Modified:
    mina/branches/2.0/pom.xml

Modified: mina/branches/2.0/pom.xml
URL: http://svn.apache.org/viewvc/mina/branches/2.0/pom.xml?rev=1375515&r1=1375514&r2=1375515&view=diff
==============================================================================
--- mina/branches/2.0/pom.xml (original)
+++ mina/branches/2.0/pom.xml Tue Aug 21 12:57:35 2012
@@ -643,14 +643,28 @@
           <groupId>org.apache.rat</groupId>
           <artifactId>apache-rat-plugin</artifactId>
           <version>${version.apache.rat.plugin}</version>
+          <inherited>true</inherited>
           <configuration>
             <excludeSubProjects>false</excludeSubProjects>
             <excludes>
               <!-- project excludes -->
               <exclude>**/resources/svn_ignore.txt</exclude>
               <exclude>**/resources/Reveal in Finder.launch</exclude>
+              <exclude>**/target/**</exclude>
+              <exclude>**/.classpath</exclude>
+              <exclude>**/.project</exclude>
+              <exclude>**/.settings/**</exclude>
+              <exclude>**/LICENSE.*</exclude>
             </excludes>
           </configuration>
+          <executions>
+            <execution>
+              <phase>verify</phase>
+              <goals>
+                <goal>check</goal>
+              </goals>
+            </execution>
+          </executions>
         </plugin>
 
         <plugin>