Author: mbenson
Date: Wed Jul 27 16:16:00 2011
New Revision: 1151523

URL: http://svn.apache.org/viewvc?rev=1151523&view=rev
Log:
dependency management in parent pom

Modified:
    commons/proper/proxy/branches/version-2.0-work/cglib/pom.xml
    commons/proper/proxy/branches/version-2.0-work/core/pom.xml
    commons/proper/proxy/branches/version-2.0-work/javassist/pom.xml
    commons/proper/proxy/branches/version-2.0-work/pom.xml
    commons/proper/proxy/branches/version-2.0-work/stub/pom.xml

Modified: commons/proper/proxy/branches/version-2.0-work/cglib/pom.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/cglib/pom.xml?rev=1151523&r1=1151522&r2=1151523&view=diff
==============================================================================
--- commons/proper/proxy/branches/version-2.0-work/cglib/pom.xml (original)
+++ commons/proper/proxy/branches/version-2.0-work/cglib/pom.xml Wed Jul 27 
16:16:00 2011
@@ -37,7 +37,6 @@
         <dependency>
             <groupId>cglib</groupId>
             <artifactId>cglib-nodep</artifactId>
-            <version>2.1_3</version>
             <optional>true</optional>
         </dependency>
         <dependency>
@@ -50,13 +49,11 @@
         <dependency>
             <groupId>commons-lang</groupId>
             <artifactId>commons-lang</artifactId>
-            <version>2.3</version>
             <scope>test</scope>
         </dependency>
         <dependency>
             <groupId>junit</groupId>
             <artifactId>junit</artifactId>
-            <version>3.8.1</version>
             <scope>test</scope>
         </dependency>
     </dependencies>

Modified: commons/proper/proxy/branches/version-2.0-work/core/pom.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/core/pom.xml?rev=1151523&r1=1151522&r2=1151523&view=diff
==============================================================================
--- commons/proper/proxy/branches/version-2.0-work/core/pom.xml (original)
+++ commons/proper/proxy/branches/version-2.0-work/core/pom.xml Wed Jul 27 
16:16:00 2011
@@ -26,7 +26,7 @@
     <modelVersion>4.0.0</modelVersion>
 
     <artifactId>commons-proxy2</artifactId>
-    <name>Commons Proxy</name>
+    <name>Commons Proxy Core</name>
     <dependencies>
         <dependency>
             <groupId>aopalliance</groupId>

Modified: commons/proper/proxy/branches/version-2.0-work/javassist/pom.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/javassist/pom.xml?rev=1151523&r1=1151522&r2=1151523&view=diff
==============================================================================
--- commons/proper/proxy/branches/version-2.0-work/javassist/pom.xml (original)
+++ commons/proper/proxy/branches/version-2.0-work/javassist/pom.xml Wed Jul 27 
16:16:00 2011
@@ -37,7 +37,6 @@
         <dependency>
             <groupId>jboss</groupId>
             <artifactId>javassist</artifactId>
-            <version>3.0</version>
         </dependency>
         <dependency>
             <groupId>${project.groupId}</groupId>
@@ -49,13 +48,11 @@
         <dependency>
             <groupId>commons-lang</groupId>
             <artifactId>commons-lang</artifactId>
-            <version>2.3</version>
             <scope>test</scope>
         </dependency>
         <dependency>
             <groupId>junit</groupId>
             <artifactId>junit</artifactId>
-            <version>3.8.1</version>
             <scope>test</scope>
         </dependency>
     </dependencies>

Modified: commons/proper/proxy/branches/version-2.0-work/pom.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/pom.xml?rev=1151523&r1=1151522&r2=1151523&view=diff
==============================================================================
--- commons/proper/proxy/branches/version-2.0-work/pom.xml (original)
+++ commons/proper/proxy/branches/version-2.0-work/pom.xml Wed Jul 27 16:16:00 
2011
@@ -21,12 +21,12 @@
     <modelVersion>4.0.0</modelVersion>
     <packaging>pom</packaging>
     <modules>
-        <module>build-tools</module>
         <module>core</module>
         <module>jdk</module>
         <module>javassist</module>
         <module>cglib</module>
         <module>stub</module>
+        <module>build-tools</module>
         <module>test</module>
     </modules>
     <parent>
@@ -196,6 +196,42 @@
         </site>
     </distributionManagement>
 
+    <dependencyManagement>
+        <dependencies>
+            <!-- TODO remove -->
+            <dependency>
+                <groupId>commons-lang</groupId>
+                <artifactId>commons-lang</artifactId>
+                <version>2.3</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.commons</groupId>
+                <artifactId>commons-lang3</artifactId>
+                <version>3.0</version>
+            </dependency>
+            <dependency>
+                <groupId>cglib</groupId>
+                <artifactId>cglib-nodep</artifactId>
+                <version>2.1_3</version>
+            </dependency>
+            <dependency>
+                <groupId>jboss</groupId>
+                <artifactId>javassist</artifactId>
+                <version>3.0</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.commons</groupId>
+                <artifactId>commons-functor</artifactId>
+                <version>1.0-SNAPSHOT</version>
+            </dependency>
+            <dependency>
+                <groupId>junit</groupId>
+                <artifactId>junit</artifactId>
+                <version>4.8.1</version>
+            </dependency>
+        </dependencies>
+    </dependencyManagement>
+
     <properties>
         <maven.compile.source>1.6</maven.compile.source>
         <maven.compile.target>1.6</maven.compile.target>

Modified: commons/proper/proxy/branches/version-2.0-work/stub/pom.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/stub/pom.xml?rev=1151523&r1=1151522&r2=1151523&view=diff
==============================================================================
--- commons/proper/proxy/branches/version-2.0-work/stub/pom.xml (original)
+++ commons/proper/proxy/branches/version-2.0-work/stub/pom.xml Wed Jul 27 
16:16:00 2011
@@ -32,14 +32,16 @@
         </dependency>
         <dependency>
             <groupId>org.apache.commons</groupId>
+            <artifactId>commons-functor</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.commons</groupId>
             <artifactId>commons-lang3</artifactId>
-            <version>3.0-SNAPSHOT</version>
             <optional>true</optional>
         </dependency>
         <dependency>
             <groupId>junit</groupId>
             <artifactId>junit</artifactId>
-            <version>4.8.1</version>
             <scope>test</scope>
         </dependency>
         <dependency>


Reply via email to