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: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to