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/04/18 18:26:01 UTC

svn commit: r649590 - /maven/components/trunk/maven-core-it-runner/pom.xml

Author: jdcasey
Date: Fri Apr 18 09:25:59 2008
New Revision: 649590

URL: http://svn.apache.org/viewvc?rev=649590&view=rev
Log:
Switch to using maven-distribution instead of maven-embedder, and stop using project.version references in the plugin configs, where the timestamp/buildnumber may be different between core-it-runner and -distribution.

Modified:
    maven/components/trunk/maven-core-it-runner/pom.xml

Modified: maven/components/trunk/maven-core-it-runner/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/trunk/maven-core-it-runner/pom.xml?rev=649590&r1=649589&r2=649590&view=diff
==============================================================================
--- maven/components/trunk/maven-core-it-runner/pom.xml (original)
+++ maven/components/trunk/maven-core-it-runner/pom.xml Fri Apr 18 09:25:59 2008
@@ -30,7 +30,7 @@
   <dependencies>
     <dependency>
       <groupId>org.apache.maven</groupId>
-      <artifactId>maven-embedder</artifactId>
+      <artifactId>maven-distribution</artifactId>
       <version>2.1-SNAPSHOT</version>
       <classifier>bin</classifier>
       <type>tar.gz</type>
@@ -52,7 +52,7 @@
           <systemProperties>
             <property>
               <name>maven.home</name>
-              <value>${basedir}/target/maven-installation/apache-maven-${project.version}</value>
+              <value>${basedir}/target/maven-installation/apache-maven-2.1-SNAPSHOT</value>
             </property>
             <property>
               <name>maven.test.tmpdir</name>
@@ -76,8 +76,8 @@
               <artifactItems>
                 <artifactItem>
                   <groupId>org.apache.maven</groupId>
-                  <artifactId>maven-embedder</artifactId>
-                  <version>${project.version}</version>
+                  <artifactId>maven-distribution</artifactId>
+                  <version>2.1-SNAPSHOT</version>
                   <classifier>bin</classifier>
                   <type>tar.gz</type>
                 </artifactItem>
@@ -96,7 +96,7 @@
           <execution>
             <configuration>
               <tasks>
-                <chmod file="${basedir}/target/maven-installation/apache-maven-${project.version}/bin/mvn" perm="755"/>
+                <chmod file="${basedir}/target/maven-installation/apache-maven-2.1-SNAPSHOT/bin/mvn" perm="755"/>
               </tasks>
             </configuration>
             <phase>process-sources</phase>