You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by il...@apache.org on 2013/03/16 16:37:29 UTC

svn commit: r1457265 - /syncope/trunk/core/pom.xml

Author: ilgrosso
Date: Sat Mar 16 15:37:29 2013
New Revision: 1457265

URL: http://svn.apache.org/r1457265
Log:
Enabling the skipTests profile to download Tomcat if not already done

Modified:
    syncope/trunk/core/pom.xml

Modified: syncope/trunk/core/pom.xml
URL: http://svn.apache.org/viewvc/syncope/trunk/core/pom.xml?rev=1457265&r1=1457264&r2=1457265&view=diff
==============================================================================
--- syncope/trunk/core/pom.xml (original)
+++ syncope/trunk/core/pom.xml Sat Mar 16 15:37:29 2013
@@ -660,9 +660,17 @@ under the License.
     
     <profile>
       <id>skipTests</id>
+
       <properties>
         <javaagent/>
       </properties>
+
+      <dependencies>
+        <dependency>
+          <groupId>com.h2database</groupId>
+          <artifactId>h2</artifactId>
+        </dependency>
+      </dependencies>
       
       <build>
         <plugins>      
@@ -687,8 +695,22 @@ under the License.
             <groupId>org.codehaus.cargo</groupId>
             <artifactId>cargo-maven2-plugin</artifactId>
             <inherited>true</inherited>
+            <configuration>
+              <deployables>
+                <deployable>
+                  <location>${project.build.directory}/${project.build.finalName}.war</location>
+                </deployable>
+              </deployables>
+            </configuration>
             <executions>
               <execution>
+                <id>install-container</id>
+                <phase>package</phase>
+                <goals>
+                  <goal>install</goal>
+                </goals>
+              </execution>
+              <execution>
                 <id>start-container</id>
                 <phase>none</phase>
               </execution>