You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@archiva.apache.org by ol...@apache.org on 2012/07/02 17:41:04 UTC

svn commit: r1356307 - /archiva/redback/redback-components/trunk/redback-components-parent/pom.xml

Author: olamy
Date: Mon Jul  2 15:41:02 2012
New Revision: 1356307

URL: http://svn.apache.org/viewvc?rev=1356307&view=rev
Log:
execute rat plugin in the default build

Modified:
    archiva/redback/redback-components/trunk/redback-components-parent/pom.xml

Modified: archiva/redback/redback-components/trunk/redback-components-parent/pom.xml
URL: http://svn.apache.org/viewvc/archiva/redback/redback-components/trunk/redback-components-parent/pom.xml?rev=1356307&r1=1356306&r2=1356307&view=diff
==============================================================================
--- archiva/redback/redback-components/trunk/redback-components-parent/pom.xml (original)
+++ archiva/redback/redback-components/trunk/redback-components-parent/pom.xml Mon Jul  2 15:41:02 2012
@@ -182,6 +182,29 @@
         </plugin>
       </plugins>
     </pluginManagement>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.rat</groupId>
+        <artifactId>apache-rat-plugin</artifactId>
+        <configuration>
+          <excludes>
+            <exclude>.gitignore</exclude>
+            <exclude>DEPENDENCIES</exclude>
+            <exclude>README.txt</exclude>
+            <exclude>*.sh</exclude>
+          </excludes>
+        </configuration>
+        <executions>
+          <execution>
+            <id>rat-check</id>
+            <goals>
+              <goal>check</goal>
+            </goals>
+            <phase>verify</phase>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
   </build>
   <reporting>
     <plugins>
@@ -245,7 +268,6 @@
         <artifactId>maven-jxr-plugin</artifactId>
         <version>2.2</version>
       </plugin>
-
     </plugins>
   </reporting>
 
@@ -345,34 +367,6 @@
         </plugins>
       </build>
     </profile>
-    <profile>
-      <id>rat</id>
-      <build>
-        <plugins>
-          <plugin>
-            <groupId>org.apache.rat</groupId>
-            <artifactId>apache-rat-plugin</artifactId>
-            <configuration>
-              <excludes>
-                <exclude>.gitignore</exclude>
-                <exclude>DEPENDENCIES</exclude>
-                <exclude>README.txt</exclude>
-                <exclude>*.sh</exclude>
-              </excludes>
-            </configuration>
-            <executions>
-              <execution>
-                <id>rat-check</id>
-                <goals>
-                  <goal>check</goal>
-                </goals>
-                <phase>verify</phase>
-              </execution>
-            </executions>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
   </profiles>
 
 </project>