You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by ge...@apache.org on 2008/08/25 21:40:52 UTC

svn commit: r688846 - in /servicemix/components/shared-libraries/trunk: servicemix-common/pom.xml servicemix-shared/pom.xml servicemix-soap/pom.xml servicemix-soap2/pom.xml

Author: gertv
Date: Mon Aug 25 12:40:51 2008
New Revision: 688846

URL: http://svn.apache.org/viewvc?rev=688846&view=rev
Log:
SM-1455: Reduce dependency cycle between SL and container

Modified:
    servicemix/components/shared-libraries/trunk/servicemix-common/pom.xml
    servicemix/components/shared-libraries/trunk/servicemix-shared/pom.xml
    servicemix/components/shared-libraries/trunk/servicemix-soap/pom.xml
    servicemix/components/shared-libraries/trunk/servicemix-soap2/pom.xml

Modified: servicemix/components/shared-libraries/trunk/servicemix-common/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/components/shared-libraries/trunk/servicemix-common/pom.xml?rev=688846&r1=688845&r2=688846&view=diff
==============================================================================
--- servicemix/components/shared-libraries/trunk/servicemix-common/pom.xml (original)
+++ servicemix/components/shared-libraries/trunk/servicemix-common/pom.xml Mon Aug 25 12:40:51 2008
@@ -48,12 +48,18 @@
 
   <dependencies>
     <dependency>
+      <groupId>org.apache.servicemix.specs</groupId>
+      <artifactId>org.apache.servicemix.specs.jbi-api-1.0</artifactId>
+      <version>${servicemix-specs-version}</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
       <groupId>org.apache.servicemix</groupId>
-      <artifactId>servicemix-jbi</artifactId>
-      <version>${servicemix-version}</version>
+      <artifactId>servicemix-utils</artifactId>
+      <version>1.0-SNAPSHOT</version>
       <scope>provided</scope>
     </dependency>
-    	<dependency>
+    <dependency>
       <groupId>org.apache.servicemix</groupId>
       <artifactId>servicemix-core</artifactId>
       <version>${servicemix-version}</version>
@@ -64,6 +70,14 @@
          <groupId>org.springframework</groupId>
          <artifactId>spring-jmx</artifactId>
         </exclusion>
+        <exclusion>
+         <groupId>org.apache.servicemix</groupId>
+         <artifactId>servicemix-jbi</artifactId>
+        </exclusion>
+        <exclusion>
+         <groupId>org.apache.servicemix</groupId>
+         <artifactId>servicemix-services</artifactId>
+        </exclusion>
       </exclusions>
     </dependency>
     <dependency>

Modified: servicemix/components/shared-libraries/trunk/servicemix-shared/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/components/shared-libraries/trunk/servicemix-shared/pom.xml?rev=688846&r1=688845&r2=688846&view=diff
==============================================================================
--- servicemix/components/shared-libraries/trunk/servicemix-shared/pom.xml (original)
+++ servicemix/components/shared-libraries/trunk/servicemix-shared/pom.xml Mon Aug 25 12:40:51 2008
@@ -48,7 +48,12 @@
       <groupId>org.apache.servicemix</groupId>
       <artifactId>servicemix-soap2</artifactId>
       <version>${pom.version}</version>
-    </dependency>    
+    </dependency>
+    <dependency>
+      <groupId>org.apache.servicemix</groupId>
+      <artifactId>servicemix-utils</artifactId>
+      <version>1.0-SNAPSHOT</version>
+    </dependency>
     <dependency>
       <groupId>org.apache.servicemix</groupId>
       <artifactId>servicemix-core</artifactId>
@@ -71,6 +76,10 @@
           <artifactId>servicemix-jbi</artifactId>
         </exclusion>
         <exclusion>
+          <groupId>org.apache.servicemix</groupId>
+          <artifactId>servicemix-services</artifactId>
+        </exclusion>
+        <exclusion>
           <groupId>org.apache.xbean</groupId>
           <artifactId>xbean-kernel</artifactId>
         </exclusion>

Modified: servicemix/components/shared-libraries/trunk/servicemix-soap/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/components/shared-libraries/trunk/servicemix-soap/pom.xml?rev=688846&r1=688845&r2=688846&view=diff
==============================================================================
--- servicemix/components/shared-libraries/trunk/servicemix-soap/pom.xml (original)
+++ servicemix/components/shared-libraries/trunk/servicemix-soap/pom.xml Mon Aug 25 12:40:51 2008
@@ -49,10 +49,18 @@
       <version>4.0-SNAPSHOT</version>
     </dependency>
     <dependency>
+      <groupId>org.apache.servicemix.specs</groupId>
+      <artifactId>org.apache.servicemix.specs.jbi-api-1.0</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.servicemix</groupId>
+      <artifactId>servicemix-utils</artifactId>
+    </dependency>
+    <dependency>
       <groupId>org.apache.servicemix</groupId>
       <artifactId>servicemix-core</artifactId>
       <version>${servicemix-version}</version>
-      <scope>provided</scope>
+      <scope>test</scope>
       <exclusions>
         <exclusion>
          <groupId>org.jencks</groupId>
@@ -62,6 +70,14 @@
          <groupId>org.springframework</groupId>
          <artifactId>spring-jmx</artifactId>
         </exclusion>
+        <exclusion>
+         <groupId>org.apache.servicemix</groupId>
+         <artifactId>servicemix-jbi</artifactId>
+        </exclusion>
+        <exclusion>
+         <groupId>org.apache.servicemix</groupId>
+         <artifactId>servicemix-services</artifactId>
+        </exclusion>
       </exclusions>
     </dependency>
     <dependency>

Modified: servicemix/components/shared-libraries/trunk/servicemix-soap2/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/components/shared-libraries/trunk/servicemix-soap2/pom.xml?rev=688846&r1=688845&r2=688846&view=diff
==============================================================================
--- servicemix/components/shared-libraries/trunk/servicemix-soap2/pom.xml (original)
+++ servicemix/components/shared-libraries/trunk/servicemix-soap2/pom.xml Mon Aug 25 12:40:51 2008
@@ -44,9 +44,8 @@
 
   <dependencies>
     <dependency>
-      <groupId>org.apache.servicemix</groupId>
-      <artifactId>servicemix-jbi</artifactId>
-      <version>${servicemix-version}</version>
+      <groupId>org.apache.servicemix.specs</groupId>
+      <artifactId>org.apache.servicemix.specs.jbi-api-1.0</artifactId>
     </dependency>
     <dependency>
       <groupId>commons-logging</groupId>