You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jackrabbit.apache.org by ju...@apache.org on 2011/11/02 16:53:24 UTC

svn commit: r1196652 - /jackrabbit/trunk/jackrabbit-webapp/pom.xml

Author: jukka
Date: Wed Nov  2 15:53:24 2011
New Revision: 1196652

URL: http://svn.apache.org/viewvc?rev=1196652&view=rev
Log:
JCR-3132: Test tooling updates

Make jackrabbit-webapp leverage the the parent configuration of the failsafe plugin

Modified:
    jackrabbit/trunk/jackrabbit-webapp/pom.xml

Modified: jackrabbit/trunk/jackrabbit-webapp/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/jackrabbit-webapp/pom.xml?rev=1196652&r1=1196651&r2=1196652&view=diff
==============================================================================
--- jackrabbit/trunk/jackrabbit-webapp/pom.xml (original)
+++ jackrabbit/trunk/jackrabbit-webapp/pom.xml Wed Nov  2 15:53:24 2011
@@ -196,36 +196,20 @@
         </configuration>
       </plugin>
     </plugins>
+    <pluginManagement>
+      <plugins>
+        <plugin>
+          <artifactId>maven-failsafe-plugin</artifactId>
+          <configuration>
+            <workingDirectory>${project.build.directory}</workingDirectory>
+            <systemPropertyVariables>
+              <webapp.directory>${project.build.directory}/${project.artifactId}-${project.version}</webapp.directory>
+              <default.webxml>${basedir}/src/test/resources/default-web.xml</default.webxml>
+            </systemPropertyVariables>
+          </configuration>
+        </plugin>
+      </plugins>
+    </pluginManagement>
   </build>
 
-  <profiles>
-    <profile>
-      <id>integrationTesting</id>
-      <build>
-        <plugins>
-          <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-failsafe-plugin</artifactId>
-            <version>2.6</version>
-            <configuration>
-              <workingDirectory>${project.build.directory}</workingDirectory>
-              <systemPropertyVariables>
-                <webapp.directory>${project.build.directory}/${project.artifactId}-${project.version}</webapp.directory>
-                <default.webxml>${basedir}/src/test/resources/default-web.xml</default.webxml>
-              </systemPropertyVariables>
-            </configuration>
-            <executions>
-              <execution>
-                <goals>
-                  <goal>integration-test</goal>
-                  <goal>verify</goal>
-                </goals>
-              </execution>
-            </executions>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
-  </profiles>
-
 </project>