You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@shindig.apache.org by ss...@apache.org on 2012/09/04 19:29:53 UTC

svn commit: r1380748 - /shindig/trunk/pom.xml

Author: ssievers
Date: Tue Sep  4 17:29:52 2012
New Revision: 1380748

URL: http://svn.apache.org/viewvc?rev=1380748&view=rev
Log:
SHINDIG-1865 | Enable Apache RAT as part of the Shindig build process

Modified:
    shindig/trunk/pom.xml

Modified: shindig/trunk/pom.xml
URL: http://svn.apache.org/viewvc/shindig/trunk/pom.xml?rev=1380748&r1=1380747&r2=1380748&view=diff
==============================================================================
--- shindig/trunk/pom.xml (original)
+++ shindig/trunk/pom.xml Tue Sep  4 17:29:52 2012
@@ -644,10 +644,18 @@
               <stagingSiteURL>scp://people.apache.org/www/shindig.apache.org/shindig-2.0.x/${project.version}</stagingSiteURL>
             </configuration>
           </plugin>
-         <plugin>
-           <groupId>org.apache.rat</groupId>
-           <artifactId>apache-rat-plugin</artifactId>
-         </plugin>
+          <plugin>
+            <groupId>org.apache.rat</groupId>
+            <artifactId>apache-rat-plugin</artifactId>
+            <executions>
+              <execution>
+                <phase>verify</phase>
+                <goals>
+                  <goal>check</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
           <plugin>
             <groupId>org.apache.maven.plugins</groupId>
             <artifactId>maven-checkstyle-plugin</artifactId>
@@ -1340,6 +1348,10 @@
               <exclude>**/dependency-reduced-pom.xml</exclude>
               <exclude>content/editor/CodeMirror-0.8/js/*</exclude>
               <exclude>content/editor/CodeMirror-0.8/css/*</exclude>
+              <exclude>**/*.classpath</exclude>
+              <exclude>**/.project</exclude>
+              <exclude>**/.settings/*</exclude>
+              <exclude>**/src/test/resources/**</exclude>              
             </excludes>
           </configuration>
         </plugin>