You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2014/07/21 15:39:02 UTC

svn commit: r1612267 - /maven/shared/trunk/file-management/pom.xml

Author: hboutemy
Date: Mon Jul 21 13:39:02 2014
New Revision: 1612267

URL: http://svn.apache.org/r1612267
Log:
configured license check

Modified:
    maven/shared/trunk/file-management/pom.xml

Modified: maven/shared/trunk/file-management/pom.xml
URL: http://svn.apache.org/viewvc/maven/shared/trunk/file-management/pom.xml?rev=1612267&r1=1612266&r2=1612267&view=diff
==============================================================================
--- maven/shared/trunk/file-management/pom.xml (original)
+++ maven/shared/trunk/file-management/pom.xml Mon Jul 21 13:39:02 2014
@@ -102,7 +102,7 @@ under the License.
       <plugin>
         <groupId>org.codehaus.modello</groupId>
         <artifactId>modello-maven-plugin</artifactId>
-	<version>1.4.1</version>
+        <version>1.4.1</version>
         <configuration>
           <version>1.1.0</version>
           <models>
@@ -127,6 +127,23 @@ under the License.
           </execution>
         </executions>
       </plugin>
+      <plugin>
+        <groupId>org.apache.rat</groupId>
+        <artifactId>apache-rat-plugin</artifactId>
+        <configuration>
+          <excludes>
+            <exclude>src/test/resources/test*/**/*.txt</exclude>
+          </excludes>            
+        </configuration>
+        <executions>
+          <execution>
+            <id>check</id>
+            <goals>
+              <goal>check</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>      
     </plugins>
   </build>
 </project>