Title: [760] trunk: Moved dependency management to parent pom.
Revision
760
Author
mauro
Date
2007-07-12 14:07:06 -0500 (Thu, 12 Jul 2007)

Log Message

Moved dependency management to parent pom.

Modified Paths


Diff

Modified: trunk/core/pom.xml (759 => 760)

--- trunk/core/pom.xml	2007-07-12 13:25:36 UTC (rev 759)
+++ trunk/core/pom.xml	2007-07-12 19:07:06 UTC (rev 760)
@@ -14,45 +14,38 @@
     <dependency>
       <groupId>ant</groupId>
       <artifactId>ant</artifactId>
-      <version>1.6.5</version>
       <scope>provided</scope>
-    </dependency>  
+    </dependency>
     <dependency>
       <groupId>jmock</groupId>
       <artifactId>jmock</artifactId>
-      <version>1.1.0</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>jmock</groupId>
       <artifactId>jmock-cglib</artifactId>
-      <version>1.1.0</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>cglib</groupId>
       <artifactId>cglib-full</artifactId>
-      <version>2.0</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>proxytoys</groupId>
       <artifactId>proxytoys</artifactId>
-      <version>0.2.1</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
-      <version>3.8.2</version>
       <scope>provided</scope>
-    </dependency>        
+    </dependency>
     <dependency>
       <groupId>velocity</groupId>
       <artifactId>velocity-dep</artifactId>
-      <version>1.4</version>
       <scope>provided</scope>
-    </dependency>        
+    </dependency>
   </dependencies>
 
   <build>

Modified: trunk/plugins/maven/pom.xml (759 => 760)

--- trunk/plugins/maven/pom.xml	2007-07-12 13:25:36 UTC (rev 759)
+++ trunk/plugins/maven/pom.xml	2007-07-12 19:07:06 UTC (rev 760)
@@ -19,17 +19,14 @@
     <dependency>
       <groupId>org.apache.maven</groupId>
       <artifactId>maven-plugin-api</artifactId>
-      <version>2.0</version>
     </dependency>
     <dependency>
       <groupId>ant</groupId>
       <artifactId>ant</artifactId>
-      <version>1.6.5</version>
     </dependency>
     <dependency>
       <groupId>velocity</groupId>
       <artifactId>velocity-dep</artifactId>
-      <version>1.4</version>
     </dependency>
   </dependencies>
 

Modified: trunk/pom.xml (759 => 760)

--- trunk/pom.xml	2007-07-12 13:25:36 UTC (rev 759)
+++ trunk/pom.xml	2007-07-12 19:07:06 UTC (rev 760)
@@ -18,6 +18,51 @@
     <module>plugins/maven</module>
   </modules>
 
+  <dependencyManagement>
+    <dependencies>
+      <dependency>
+        <groupId>ant</groupId>
+        <artifactId>ant</artifactId>
+        <version>1.6.5</version>
+      </dependency>
+      <dependency>
+        <groupId>jmock</groupId>
+        <artifactId>jmock</artifactId>
+        <version>1.1.0</version>
+      </dependency>
+      <dependency>
+        <groupId>jmock</groupId>
+        <artifactId>jmock-cglib</artifactId>
+        <version>1.1.0</version>
+      </dependency>
+      <dependency>
+        <groupId>cglib</groupId>
+        <artifactId>cglib-full</artifactId>
+        <version>2.0</version>
+      </dependency>
+      <dependency>
+        <groupId>proxytoys</groupId>
+        <artifactId>proxytoys</artifactId>
+        <version>0.2.1</version>
+      </dependency>
+      <dependency>
+        <groupId>junit</groupId>
+        <artifactId>junit</artifactId>
+        <version>3.8.2</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.maven</groupId>
+        <artifactId>maven-plugin-api</artifactId>
+        <version>2.0</version>
+      </dependency>      
+      <dependency>
+        <groupId>velocity</groupId>
+        <artifactId>velocity-dep</artifactId>
+        <version>1.4</version>
+      </dependency>
+    </dependencies>
+  </dependencyManagement>
+
   <licenses>
     <license>
       <name>BSD style</name>


To unsubscribe from this list please visit:

http://xircles.codehaus.org/manage_email

Reply via email to