You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by bd...@apache.org on 2008/01/28 10:23:54 UTC

svn commit: r615798 - /incubator/sling/trunk/launchpad/launchpad-webapp/pom.xml

Author: bdelacretaz
Date: Mon Jan 28 01:23:53 2008
New Revision: 615798

URL: http://svn.apache.org/viewvc?rev=615798&view=rev
Log:
SLING-149 - disable integration tests if maven.skip.test property is true

Modified:
    incubator/sling/trunk/launchpad/launchpad-webapp/pom.xml

Modified: incubator/sling/trunk/launchpad/launchpad-webapp/pom.xml
URL: http://svn.apache.org/viewvc/incubator/sling/trunk/launchpad/launchpad-webapp/pom.xml?rev=615798&r1=615797&r2=615798&view=diff
==============================================================================
--- incubator/sling/trunk/launchpad/launchpad-webapp/pom.xml (original)
+++ incubator/sling/trunk/launchpad/launchpad-webapp/pom.xml Mon Jan 28 01:23:53 2008
@@ -206,7 +206,9 @@
       -->
       <id>cargoIntegrationTesting</id>
       <activation>
-        <activeByDefault>true</activeByDefault>
+        <property>
+          <name>!maven.test.skip</name>
+        </property>
       </activation>
       <build>
         <plugins>
@@ -295,7 +297,9 @@
       -->
       <id>disableIntegrationTestsInTestPhase</id>
       <activation>
-        <activeByDefault>true</activeByDefault>
+        <property>
+          <name>!maven.test.skip</name>
+        </property>
       </activation>
       <build>
         <plugins>