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/08/17 11:22:20 UTC

svn commit: r566978 - /incubator/servicemix/trunk/deployables/serviceengines/servicemix-camel/pom.xml

Author: gnodet
Date: Fri Aug 17 02:22:19 2007
New Revision: 566978

URL: http://svn.apache.org/viewvc?view=rev&rev=566978
Log:
Remove unneeded dependencies from camel component

Modified:
    incubator/servicemix/trunk/deployables/serviceengines/servicemix-camel/pom.xml

Modified: incubator/servicemix/trunk/deployables/serviceengines/servicemix-camel/pom.xml
URL: http://svn.apache.org/viewvc/incubator/servicemix/trunk/deployables/serviceengines/servicemix-camel/pom.xml?view=diff&rev=566978&r1=566977&r2=566978
==============================================================================
--- incubator/servicemix/trunk/deployables/serviceengines/servicemix-camel/pom.xml (original)
+++ incubator/servicemix/trunk/deployables/serviceengines/servicemix-camel/pom.xml Fri Aug 17 02:22:19 2007
@@ -39,29 +39,84 @@
       <groupId>org.apache.camel</groupId>
       <artifactId>camel-spring</artifactId>
       <version>${camel-version}</version>
+      <exclusions>
+	    <exclusion>
+		  <groupId>org.springframework</groupId>
+		  <artifactId>spring</artifactId>
+		</exclusion>
+	    <exclusion>
+		  <groupId>commons-logging</groupId>
+		  <artifactId>commons-logging-api</artifactId>
+		</exclusion>
+	  </exclusions>
     </dependency>
     <dependency>
       <groupId>org.apache.servicemix</groupId>
-      <artifactId>servicemix-jbi</artifactId>
+      <artifactId>servicemix-shared</artifactId>
+      <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>org.apache.servicemix</groupId>
-      <artifactId>servicemix-core</artifactId>
+      <artifactId>servicemix-jbi</artifactId>
+      <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>org.apache.servicemix</groupId>
       <artifactId>servicemix-common</artifactId>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.servicemix</groupId>
+      <artifactId>servicemix-core</artifactId>
+      <scope>provided</scope>
     </dependency>
-
-    <!-- lets upgrade the versions -->
     <dependency>
-      <groupId>org.apache.xbean</groupId>
-      <artifactId>xbean-server</artifactId>
+      <groupId>org.springframework</groupId>
+      <artifactId>spring-core</artifactId>
+      <version>${spring-version}</version>
+      <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>org.springframework</groupId>
-      <artifactId>spring</artifactId>
-    </dependency>    
+      <artifactId>spring-beans</artifactId>
+      <version>${spring-version}</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.springframework</groupId>
+      <artifactId>spring-context</artifactId>
+      <version>${spring-version}</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.springframework</groupId>
+      <artifactId>spring-remoting</artifactId>
+      <version>${spring-version}</version>
+      <exclusions>
+	    <exclusion>
+		  <groupId>org.springframework</groupId>
+		  <artifactId>spring-web</artifactId>
+		</exclusion>
+	    <exclusion>
+		  <groupId>org.springframework</groupId>
+		  <artifactId>spring-aop</artifactId>
+		</exclusion>
+	    <exclusion>
+		  <groupId>aopalliance</groupId>
+		  <artifactId>aopalliance</artifactId>
+		</exclusion>
+	  </exclusions>
+    </dependency>
+    <dependency>
+      <groupId>commons-logging</groupId>
+      <artifactId>commons-logging</artifactId>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>log4j</groupId>
+      <artifactId>log4j</artifactId>
+      <scope>provided</scope>
+    </dependency>
 
     <!-- testing -->
     <dependency>