You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by br...@apache.org on 2011/08/01 16:33:27 UTC

svn commit: r1152801 - in /maven/archetype/trunk: maven-archetype-plugin/pom.xml pom.xml

Author: brett
Date: Mon Aug  1 14:33:27 2011
New Revision: 1152801

URL: http://svn.apache.org/viewvc?rev=1152801&view=rev
Log:
ensure correct build order when the packaging library is not yet in the local repository

Modified:
    maven/archetype/trunk/maven-archetype-plugin/pom.xml
    maven/archetype/trunk/pom.xml

Modified: maven/archetype/trunk/maven-archetype-plugin/pom.xml
URL: http://svn.apache.org/viewvc/maven/archetype/trunk/maven-archetype-plugin/pom.xml?rev=1152801&r1=1152800&r2=1152801&view=diff
==============================================================================
--- maven/archetype/trunk/maven-archetype-plugin/pom.xml (original)
+++ maven/archetype/trunk/maven-archetype-plugin/pom.xml Mon Aug  1 14:33:27 2011
@@ -61,6 +61,12 @@ under the License.
       <groupId>org.apache.maven.archetype</groupId>
       <artifactId>archetype-common</artifactId>
     </dependency>
+    <!-- Required for the integration tests, dependency is only to define build order -->
+    <dependency>
+      <groupId>org.apache.maven.archetype</groupId>
+      <artifactId>archetype-packaging</artifactId>
+      <scope>test</scope>
+    </dependency>
     <dependency>
       <groupId>org.codehaus.plexus</groupId>
       <artifactId>plexus-utils</artifactId>

Modified: maven/archetype/trunk/pom.xml
URL: http://svn.apache.org/viewvc/maven/archetype/trunk/pom.xml?rev=1152801&r1=1152800&r2=1152801&view=diff
==============================================================================
--- maven/archetype/trunk/pom.xml (original)
+++ maven/archetype/trunk/pom.xml Mon Aug  1 14:33:27 2011
@@ -100,6 +100,11 @@ under the License.
         <artifactId>archetype-common</artifactId>
         <version>${project.version}</version>
       </dependency>
+      <dependency>
+        <groupId>org.apache.maven.archetype</groupId>
+        <artifactId>archetype-packaging</artifactId>
+        <version>${project.version}</version>
+      </dependency>
 
       <dependency>
         <groupId>org.apache.maven</groupId>