You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ja...@apache.org on 2008/11/24 18:02:12 UTC

svn commit: r720230 - /activemq/camel/trunk/components/camel-xstream/pom.xml

Author: janstey
Date: Mon Nov 24 09:02:11 2008
New Revision: 720230

URL: http://svn.apache.org/viewvc?rev=720230&view=rev
Log:
Exclude optional xom dependency from xstream, it is LGPL.

Modified:
    activemq/camel/trunk/components/camel-xstream/pom.xml

Modified: activemq/camel/trunk/components/camel-xstream/pom.xml
URL: http://svn.apache.org/viewvc/activemq/camel/trunk/components/camel-xstream/pom.xml?rev=720230&r1=720229&r2=720230&view=diff
==============================================================================
--- activemq/camel/trunk/components/camel-xstream/pom.xml (original)
+++ activemq/camel/trunk/components/camel-xstream/pom.xml Mon Nov 24 09:02:11 2008
@@ -45,8 +45,16 @@
     </dependency>
     <dependency>
       <groupId>com.thoughtworks.xstream</groupId>
-      <artifactId>xstream</artifactId>      
-    </dependency>    
+      <artifactId>xstream</artifactId>
+      <exclusions>
+        <exclusion>
+          <!-- xom is an optional dependency of xstream. Its also 
+               LGPL, so its really not ASF compatible. -->
+          <groupId>xom</groupId>
+          <artifactId>xom</artifactId>
+        </exclusion>
+      </exclusions>
+    </dependency>
     <dependency>
       <groupId>stax</groupId>
       <artifactId>stax-api</artifactId>