You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by rf...@apache.org on 2011/07/30 00:43:41 UTC

svn commit: r1152391 - /maven/plugins/trunk/maven-remote-resources-plugin/pom.xml

Author: rfscholte
Date: Fri Jul 29 22:43:40 2011
New Revision: 1152391

URL: http://svn.apache.org/viewvc?rev=1152391&view=rev
Log:
Replace m-surefire-p bound to integration-test phase with m-failsafe-p

Modified:
    maven/plugins/trunk/maven-remote-resources-plugin/pom.xml

Modified: maven/plugins/trunk/maven-remote-resources-plugin/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-remote-resources-plugin/pom.xml?rev=1152391&r1=1152390&r2=1152391&view=diff
==============================================================================
--- maven/plugins/trunk/maven-remote-resources-plugin/pom.xml (original)
+++ maven/plugins/trunk/maven-remote-resources-plugin/pom.xml Fri Jul 29 22:43:40 2011
@@ -344,37 +344,27 @@ under the License.
           </testResource>
         </testResources>
         
-        <pluginManagement>
-          <plugins>
-            <plugin>
-              <artifactId>maven-surefire-plugin</artifactId>
-              <executions>
-                <execution>
-                  <id>integration-tests</id>
-                  <phase>integration-test</phase>
-                  <goals>
-                    <goal>test</goal>
-                  </goals>
-                  <configuration>
-                    <includes>
-                      <include>**/IT*.java</include>
-                    </includes>
-                    <systemProperties>
-                      <property>
-                        <!-- Pass this through to the tests (if set!) to have them pick the right repository -->
-                        <name>maven.repo.local</name>
-                        <value>${project.build.directory}/it-repo</value>
-                      </property>
-                    </systemProperties>
-                  </configuration>
-                </execution>
-              </executions>
-            </plugin>
-          </plugins>
-        </pluginManagement>
 
         <plugins>
           <plugin>
+            <artifactId>maven-failsafe-plugin</artifactId>
+            <version>2.9</version>
+            <executions>
+              <execution>
+                <id>integration-tests</id>
+                <goals>
+                  <goal>integration-test</goal>
+                </goals>
+                <configuration>
+                  <systemPropertyVariables>
+                    <!-- Pass this through to the tests (if set!) to have them pick the right repository -->
+                    <maven.repo.local>${project.build.directory}/it-repo</maven.repo.local>
+                  </systemPropertyVariables>
+                </configuration>
+              </execution>
+            </executions>
+          </plugin>
+          <plugin>
             <artifactId>maven-invoker-plugin</artifactId>
             <executions>
               <execution>