You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@jakarta.apache.org by bo...@apache.org on 2010/09/09 06:22:40 UTC

svn commit: r995309 - in /jakarta/cactus/trunk: framework/framework-wrappers/pom.xml framework/pom.xml integration/pom.xml

Author: bodewig
Date: Thu Sep  9 04:22:39 2010
New Revision: 995309

URL: http://svn.apache.org/viewvc?rev=995309&view=rev
Log:
move checkstyle checks to a profile that is active by default but can be disabled - for example when running in Gump.

Modified:
    jakarta/cactus/trunk/framework/framework-wrappers/pom.xml
    jakarta/cactus/trunk/framework/pom.xml
    jakarta/cactus/trunk/integration/pom.xml

Modified: jakarta/cactus/trunk/framework/framework-wrappers/pom.xml
URL: http://svn.apache.org/viewvc/jakarta/cactus/trunk/framework/framework-wrappers/pom.xml?rev=995309&r1=995308&r2=995309&view=diff
==============================================================================
--- jakarta/cactus/trunk/framework/framework-wrappers/pom.xml (original)
+++ jakarta/cactus/trunk/framework/framework-wrappers/pom.xml Thu Sep  9 04:22:39 2010
@@ -25,9 +25,15 @@
 		<version>1.8.2-SNAPSHOT</version>
 	</parent>
 	<packaging>pom</packaging>
-  <name>Cactus Wrappers - Parent Project</name>
+        <name>Cactus Wrappers - Parent Project</name>
 	<description>Parent project for Cactus wrapper projects</description>
 	<artifactId>cactus.core.framework.wrappers</artifactId>
+  <profiles>
+    <profile>
+      <id>sourcecheck</id>
+      <activation>
+	<activeByDefault>true</activeByDefault> 
+      </activation>
 	<build>
 		<plugins>
   			<plugin>
@@ -36,6 +42,8 @@
 			</plugin>
 		</plugins>
 	</build>
+    </profile>
+  </profiles>
 	<modules>
 		<module>wrapper-javaEE-12</module>
 		<module>wrapper-javaEE-13</module>

Modified: jakarta/cactus/trunk/framework/pom.xml
URL: http://svn.apache.org/viewvc/jakarta/cactus/trunk/framework/pom.xml?rev=995309&r1=995308&r2=995309&view=diff
==============================================================================
--- jakarta/cactus/trunk/framework/pom.xml (original)
+++ jakarta/cactus/trunk/framework/pom.xml Thu Sep  9 04:22:39 2010
@@ -28,6 +28,12 @@
 	<description>Parent project for Cactus framework</description>
 	<packaging>pom</packaging>
 	<artifactId>cactus.core.framework</artifactId>
+  <profiles>
+    <profile>
+      <id>sourcecheck</id>
+      <activation>
+	<activeByDefault>true</activeByDefault> 
+      </activation>
 	<build>
 	 <plugins>
 	 			<!-- Apply checkstyle rules and fail the build in case of errors. The checkstyle config
@@ -58,6 +64,8 @@
 			</plugin>
 	 </plugins>
 	</build>
+    </profile>
+  </profiles>
 
 	<dependencies>
 		<!-- TODO: add dependencies below to parent project and remove from here -->

Modified: jakarta/cactus/trunk/integration/pom.xml
URL: http://svn.apache.org/viewvc/jakarta/cactus/trunk/integration/pom.xml?rev=995309&r1=995308&r2=995309&view=diff
==============================================================================
--- jakarta/cactus/trunk/integration/pom.xml (original)
+++ jakarta/cactus/trunk/integration/pom.xml Thu Sep  9 04:22:39 2010
@@ -34,6 +34,12 @@
 		<module>maven2</module>
     <module>eclipse</module>
 	</modules>
+  <profiles>
+    <profile>
+      <id>sourcecheck</id>
+      <activation>
+	<activeByDefault>true</activeByDefault> 
+      </activation>
 	<build>
 	 <plugins>
 	 			<!-- Apply checkstyle rules and fail the build in case of errors. The checkstyle config
@@ -64,5 +70,7 @@
 			</plugin>
 	 </plugins>
 	</build>
+    </profile>
+  </profiles>
 </project>
  



---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@jakarta.apache.org
For additional commands, e-mail: notifications-help@jakarta.apache.org