You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by js...@apache.org on 2007/09/25 11:02:07 UTC

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

Author: jstrachan
Date: Tue Sep 25 02:02:06 2007
New Revision: 579138

URL: http://svn.apache.org/viewvc?rev=579138&view=rev
Log:
tidied up the versions to avoid exclusing potentially required jars

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?rev=579138&r1=579137&r2=579138&view=diff
==============================================================================
--- incubator/servicemix/trunk/deployables/serviceengines/servicemix-camel/pom.xml (original)
+++ incubator/servicemix/trunk/deployables/serviceengines/servicemix-camel/pom.xml Tue Sep 25 02:02:06 2007
@@ -32,23 +32,34 @@
   <packaging>jbi-component</packaging>
   <name>ServiceMix :: Camel</name>
   <description>Camel Service Engine</description>
-  
+
   <dependencies>
 
     <dependency>
       <groupId>org.apache.camel</groupId>
+      <artifactId>camel-core</artifactId>
+      <version>1.1-SNAPSHOT</version>
+      <exclusions>
+        <exclusion>
+          <groupId>commons-logging</groupId>
+          <artifactId>commons-logging-api</artifactId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.camel</groupId>
       <artifactId>camel-spring</artifactId>
       <version>1.1-SNAPSHOT</version>
       <exclusions>
-	    <exclusion>
-		  <groupId>org.springframework</groupId>
-		  <artifactId>spring</artifactId>
-		</exclusion>
-	    <exclusion>
-		  <groupId>commons-logging</groupId>
-		  <artifactId>commons-logging-api</artifactId>
-		</exclusion>
-	  </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>
@@ -92,19 +103,21 @@
       <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>
+        <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>
@@ -156,7 +169,7 @@
           </excludes>
         </configuration>
       </plugin>
-      
+
     </plugins>
   </build>
 </project>