Author: khmarbaise
Date: Sun Sep  7 15:20:09 2014
New Revision: 1623053

URL: http://svn.apache.org/r1623053
Log:
[MINVOKER-175]
 - Improved RAT configuration and reduced violations to 0.

Modified:
    maven/plugins/trunk/maven-invoker-plugin/pom.xml

Modified: maven/plugins/trunk/maven-invoker-plugin/pom.xml
URL: 
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-invoker-plugin/pom.xml?rev=1623053&r1=1623052&r2=1623053&view=diff
==============================================================================
--- maven/plugins/trunk/maven-invoker-plugin/pom.xml (original)
+++ maven/plugins/trunk/maven-invoker-plugin/pom.xml Sun Sep  7 15:20:09 2014
@@ -238,11 +238,35 @@ under the License.
             <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
           </configuration>
         </plugin>
+        <plugin>
+          <groupId>org.apache.rat</groupId>
+          <artifactId>apache-rat-plugin</artifactId>
+          <version>0.11</version>
+          <configuration>
+            <excludes>
+              <exclude>src/it/staging-dependencies/repo/**/*</exclude>
+              <exclude>src/it/**/*.txt</exclude>
+              <exclude>src/test/**/*.txt</exclude>
+            </excludes>
+          </configuration>
+          <executions>
+            <execution>
+              <id>check-rat</id>
+              <goals>
+                <goal>check</goal>
+              </goals>
+            </execution>
+          </executions>
+        </plugin>
       </plugins>
     </pluginManagement>
 
     <plugins>
       <plugin>
+        <groupId>org.apache.rat</groupId>
+        <artifactId>apache-rat-plugin</artifactId>
+      </plugin>
+      <plugin>
         <artifactId>maven-plugin-plugin</artifactId>
         <configuration>
           <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>


Reply via email to