You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@gora.apache.org by le...@apache.org on 2012/02/25 16:37:41 UTC

svn commit: r1293626 - /gora/trunk/pom.xml

Author: lewismc
Date: Sat Feb 25 15:37:40 2012
New Revision: 1293626

URL: http://svn.apache.org/viewvc?rev=1293626&view=rev
Log:
commit to change RAT target to release phase of maven lifecycle.

Modified:
    gora/trunk/pom.xml

Modified: gora/trunk/pom.xml
URL: http://svn.apache.org/viewvc/gora/trunk/pom.xml?rev=1293626&r1=1293625&r2=1293626&view=diff
==============================================================================
--- gora/trunk/pom.xml (original)
+++ gora/trunk/pom.xml Sat Feb 25 15:37:40 2012
@@ -141,19 +141,27 @@
                     </execution>
                 </executions>
             </plugin>
-            <plugin>
-                <groupId>org.apache.rat</groupId>
-                <artifactId>apache-rat-plugin</artifactId>
-                <version>0.8</version>
-                <executions>
-                    	<execution>
-                        <phase>verify</phase>
-                        <goals>
-                            <goal>check</goal>
-                        </goals>
-                    	</execution>
-                </executions>
-                <configuration>
+         </plugins>
+    </build>
+    
+    <profiles>
+        <profile>
+            <id>release</id>
+            <build>
+                <plugins>
+            	    <plugin>
+                 	<groupId>org.apache.rat</groupId>
+                	<artifactId>apache-rat-plugin</artifactId>
+                	<version>0.8</version>
+                	<executions>
+                    	    <execution>
+                            <phase>verify</phase>
+                            <goals>
+                                <goal>check</goal>
+                            </goals>
+                    	    </execution>
+                        </executions>
+                    <configuration>
           	    <licenses>
             	        <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense">
               	            <licenseFamilyCategory>ASL20</licenseFamilyCategory>
@@ -165,10 +173,13 @@
               	            </patterns>
             	        </license>
                     </licenses>
-                 </configuration>
-            </plugin>
-        </plugins>
-    </build>
+                    <excludeSubProjects>false</excludeSubProjects>
+                    </configuration>
+                 </plugin>
+             </plugins>
+          </build>
+       </profile>
+    </profiles>
 
     <modules>
         <module>gora-core</module>