You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by gn...@apache.org on 2007/12/08 17:41:05 UTC

svn commit: r602500 - in /servicemix/branches/servicemix-4.0/runtime: gshell/gshell-core/pom.xml pom.xml

Author: gnodet
Date: Sat Dec  8 08:41:04 2007
New Revision: 602500

URL: http://svn.apache.org/viewvc?rev=602500&view=rev
Log:
Add a dependencyManagement section to avoid using several versions of the same libs

Modified:
    servicemix/branches/servicemix-4.0/runtime/gshell/gshell-core/pom.xml
    servicemix/branches/servicemix-4.0/runtime/pom.xml

Modified: servicemix/branches/servicemix-4.0/runtime/gshell/gshell-core/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/branches/servicemix-4.0/runtime/gshell/gshell-core/pom.xml?rev=602500&r1=602499&r2=602500&view=diff
==============================================================================
--- servicemix/branches/servicemix-4.0/runtime/gshell/gshell-core/pom.xml (original)
+++ servicemix/branches/servicemix-4.0/runtime/gshell/gshell-core/pom.xml Sat Dec  8 08:41:04 2007
@@ -73,6 +73,11 @@
             <version>0.1-SNAPSHOT</version>
         </dependency>
         <dependency>
+            <groupId>org.apache.servicemix.bundles</groupId>
+            <artifactId>org.apache.servicemix.bundles.cglib-${cglib.version}</artifactId>
+            <version>0.1-SNAPSHOT</version>
+        </dependency>
+        <dependency>
             <groupId>org.springframework.osgi</groupId>
             <artifactId>spring-osgi-core</artifactId>
             <version>${spring.osgi.version}</version>
@@ -179,20 +184,9 @@
             <version>${spring.version}</version>
         </dependency>
         <dependency>
-            <groupId>cglib</groupId>
-            <artifactId>cglib-nodep</artifactId>
-            <version>2.1_3</version>
-        </dependency>
-        <dependency>
             <groupId>org.slf4j</groupId>
             <artifactId>slf4j-jdk14</artifactId>
             <version>1.4.3</version>
-        </dependency>
-        <dependency>
-            <groupId>org.ops4j.pax.runner</groupId>
-            <artifactId>pax-runner</artifactId>
-            <version>0.5.1</version>
-            <scope>test</scope>
         </dependency>
     </dependencies>
 

Modified: servicemix/branches/servicemix-4.0/runtime/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/branches/servicemix-4.0/runtime/pom.xml?rev=602500&r1=602499&r2=602500&view=diff
==============================================================================
--- servicemix/branches/servicemix-4.0/runtime/pom.xml (original)
+++ servicemix/branches/servicemix-4.0/runtime/pom.xml Sat Dec  8 08:41:04 2007
@@ -59,6 +59,8 @@
       <geronimo.stax.version>1.0.1-SNAPSHOT</geronimo.stax.version>
       <gshell.version>1.0-alpha-1-SNAPSHOT</gshell.version>
       <junit.version>4.4</junit.version>
+      <jline.version>0.9.93</jline.version>
+      <log4j.version>1.2.15</log4j.version>
       <mina.version>1.1.6-r602102</mina.version>
       <pax.logging.version>0.9.8-SNAPSHOT</pax.logging.version>
       <spring.osgi.version>1.0-m3</spring.osgi.version>
@@ -184,6 +186,61 @@
           </snapshots>
       </pluginRepository>
   </pluginRepositories>
+
+  <dependencyManagement>
+    <dependencies>
+      <dependency>
+          <groupId>org.springframework</groupId>
+          <artifactId>spring-aop</artifactId>
+          <version>${spring.version}</version>
+      </dependency>
+      <dependency>
+          <groupId>org.springframework</groupId>
+          <artifactId>spring-beans</artifactId>
+          <version>${spring.version}</version>
+      </dependency>
+      <dependency>
+          <groupId>org.springframework</groupId>
+          <artifactId>spring-core</artifactId>
+          <version>${spring.version}</version>
+      </dependency>
+      <dependency>
+          <groupId>org.springframework</groupId>
+          <artifactId>spring-context</artifactId>
+          <version>${spring.version}</version>
+      </dependency>
+      <dependency>
+          <groupId>org.apache.mina</groupId>
+          <artifactId>mina-core</artifactId>
+          <version>${mina.version}</version>
+      </dependency>
+      <dependency>
+          <groupId>org.apache.mina</groupId>
+          <artifactId>mina-filter-ssl</artifactId>
+          <version>${mina.version}</version>
+      </dependency>
+      <dependency>
+          <groupId>junit</groupId>
+          <artifactId>junit</artifactId>
+          <version>${junit.version}</version>
+      </dependency>
+      <dependency>
+          <groupId>log4j</groupId>
+          <artifactId>log4j</artifactId>
+          <version>${log4j.version}</version>
+      </dependency>
+      <dependency>
+          <groupId>jline</groupId>
+          <artifactId>jline</artifactId>
+          <version>${jline.version}</version>
+      </dependency>
+      <dependency>
+          <groupId>commons-logging</groupId>
+          <artifactId>commons-logging</artifactId>
+          <version>${commons.logging.version}</version>
+      </dependency>
+    </dependencies>
+  </dependencyManagement>
 
   <build>
       <defaultGoal>install</defaultGoal>