You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by jd...@apache.org on 2008/12/16 01:04:38 UTC

svn commit: r726881 - /maven/components/branches/maven-2.0.10-RC/maven-integration-tests/pom.xml

Author: jdcasey
Date: Mon Dec 15 16:04:38 2008
New Revision: 726881

URL: http://svn.apache.org/viewvc?rev=726881&view=rev
Log:
still attempting to fix problems with IT execution out on CI.

Modified:
    maven/components/branches/maven-2.0.10-RC/maven-integration-tests/pom.xml

Modified: maven/components/branches/maven-2.0.10-RC/maven-integration-tests/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.10-RC/maven-integration-tests/pom.xml?rev=726881&r1=726880&r2=726881&view=diff
==============================================================================
--- maven/components/branches/maven-2.0.10-RC/maven-integration-tests/pom.xml (original)
+++ maven/components/branches/maven-2.0.10-RC/maven-integration-tests/pom.xml Mon Dec 15 16:04:38 2008
@@ -10,7 +10,7 @@
   
   <properties>
     <integrationTestSVNDir>trunk</integrationTestSVNDir>
-    <itDir>file:${java.io.tmpdir}/${pom.artifactId}-${pom.version}</itDir>
+    <itDir>${java.io.tmpdir}/${pom.artifactId}-${pom.version}</itDir>
   </properties>
   
   <profiles>
@@ -33,6 +33,9 @@
                 <goals>
                   <goal>update</goal>
                 </goals>
+                <configuration>
+                  <workingDirectory>${itDir}</workingDirectory>
+                </configuration>
               </execution>
             </executions>
           </plugin>
@@ -57,6 +60,9 @@
                 <goals>
                   <goal>checkout</goal>
                 </goals>
+                <configuration>
+                  <checkoutDirectory>${itDir}</checkoutDirectory>
+                </configuration>
               </execution>
             </executions>
           </plugin>
@@ -75,16 +81,20 @@
         <filtering>true</filtering>
       </resource>
     </resources>
+    <pluginManagement>
+      <plugins>
+        <plugin>
+          <artifactId>maven-resources-plugin</artifactId>
+          <version>2.2</version>
+        </plugin>
+      </plugins>
+    </pluginManagement>
     <plugins>
       <plugin>
         <artifactId>maven-scm-plugin</artifactId>
         <version>1.1</version>
         <configuration>
           <connectionUrl>scm:svn:http://svn.apache.org/repos/asf/maven/core-integration-testing/${integrationTestSVNDir}</connectionUrl>
-          <!-- Hard-coding to /tmp/ to avoid long path names that will make windows scream. -->
-          <!-- NOT INTERPOLATED DURING PROFILE ACTIVATION, so making these values explicit throughout to avoid confusion. -->
-          <checkoutDirectory>${itDir}</checkoutDirectory>
-          <workingDirectory>${itDir}</workingDirectory>
         </configuration>
       </plugin>
     </plugins>