You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2010/06/07 23:21:06 UTC

svn commit: r952447 - /maven/archetype/trunk/archetype-common/pom.xml

Author: hboutemy
Date: Mon Jun  7 21:21:06 2010
New Revision: 952447

URL: http://svn.apache.org/viewvc?rev=952447&view=rev
Log:
dependencies simplification

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

Modified: maven/archetype/trunk/archetype-common/pom.xml
URL: http://svn.apache.org/viewvc/maven/archetype/trunk/archetype-common/pom.xml?rev=952447&r1=952446&r2=952447&view=diff
==============================================================================
--- maven/archetype/trunk/archetype-common/pom.xml (original)
+++ maven/archetype/trunk/archetype-common/pom.xml Mon Jun  7 21:21:06 2010
@@ -35,12 +35,12 @@ under the License.
   <name>Maven Archetype Common</name>
   <description>Core Archetype classes.</description>
 
+  <properties>
+    <cargoVersion>1.0-alpha-6</cargoVersion>
+  </properties>
+
   <dependencies>
     <dependency>
-      <groupId>org.apache.maven</groupId>
-      <artifactId>maven-core</artifactId>
-    </dependency>
-    <dependency>
       <groupId>net.sourceforge.jchardet</groupId>
       <artifactId>jchardet</artifactId>
     </dependency>
@@ -90,41 +90,27 @@ under the License.
       <artifactId>velocity</artifactId>
     </dependency>
     <dependency>
-      <groupId>commons-collections</groupId>
-      <artifactId>commons-collections</artifactId>
-    </dependency>
-    <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
-    </dependency>
-    <dependency>
-      <groupId>org.codehaus.cargo</groupId>
-      <artifactId>cargo-core-api-container</artifactId>
-      <version>1.0-alpha-6</version>
       <scope>test</scope>
     </dependency>
+
     <dependency>
       <groupId>org.codehaus.cargo</groupId>
-      <artifactId>cargo-core-api-util</artifactId>
-      <version>1.0-alpha-6</version>
+      <artifactId>cargo-core-api-container</artifactId>
+      <version>${cargoVersion}</version>
       <scope>test</scope>
     </dependency>
     <dependency>
       <groupId>org.codehaus.cargo</groupId>
       <artifactId>cargo-core-api-generic</artifactId>
-      <version>1.0-alpha-6</version>
-      <scope>test</scope>
-    </dependency>
-    <dependency>
-      <groupId>org.codehaus.cargo</groupId>
-      <artifactId>cargo-core-api-module</artifactId>
-      <version>1.0-alpha-6</version>
+      <version>${cargoVersion}</version>
       <scope>test</scope>
     </dependency>
     <dependency>
       <groupId>org.codehaus.cargo</groupId>
       <artifactId>cargo-core-container-jetty</artifactId>
-      <version>1.0-alpha-6</version>
+      <version>${cargoVersion}</version>
       <scope>test</scope>
     </dependency>
     <dependency>
@@ -133,9 +119,11 @@ under the License.
       <version>6.1.11</version>
       <scope>test</scope>
     </dependency>
+
     <dependency>
       <groupId>org.apache.maven.wagon</groupId>
       <artifactId>wagon-file</artifactId>
+      <scope>test</scope>
     </dependency>
     <dependency>
       <groupId>org.apache.maven.wagon</groupId>
@@ -143,6 +131,7 @@ under the License.
       <version>1.0-beta-2</version><!-- with 1.0-beta-4 some tests fail -->
       <scope>test</scope>
     </dependency>
+
     <dependency>
       <groupId>${project.groupId}</groupId>
       <artifactId>archetype-repository</artifactId>