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

svn commit: r720378 - in /servicemix/smx3/trunk: pom.xml web/servicemix-web-console/pom.xml

Author: ccustine
Date: Mon Nov 24 17:46:52 2008
New Revision: 720378

URL: http://svn.apache.org/viewvc?rev=720378&view=rev
Log:
SMX4-163 exclude xom dependency from xstream

Modified:
    servicemix/smx3/trunk/pom.xml
    servicemix/smx3/trunk/web/servicemix-web-console/pom.xml

Modified: servicemix/smx3/trunk/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx3/trunk/pom.xml?rev=720378&r1=720377&r2=720378&view=diff
==============================================================================
--- servicemix/smx3/trunk/pom.xml (original)
+++ servicemix/smx3/trunk/pom.xml Mon Nov 24 17:46:52 2008
@@ -1689,6 +1689,14 @@
                 <groupId>com.thoughtworks.xstream</groupId>
                 <artifactId>xstream</artifactId>
                 <version>1.3</version>
+                <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>org.apache.ws.commons.schema</groupId>

Modified: servicemix/smx3/trunk/web/servicemix-web-console/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx3/trunk/web/servicemix-web-console/pom.xml?rev=720378&r1=720377&r2=720378&view=diff
==============================================================================
--- servicemix/smx3/trunk/web/servicemix-web-console/pom.xml (original)
+++ servicemix/smx3/trunk/web/servicemix-web-console/pom.xml Mon Nov 24 17:46:52 2008
@@ -98,6 +98,10 @@
           <artifactId>wsdl4j</artifactId>
         </exclusion>
         <exclusion>
+          <groupId>com.thoughtworks.xstream</groupId>
+          <artifactId>xstream</artifactId>
+        </exclusion>
+        <exclusion>
           <groupId>xstream</groupId>
           <artifactId>xstream</artifactId>
         </exclusion>