Author: janstey
Date: Mon Nov 24 11:13:17 2008
New Revision: 720262
URL: http://svn.apache.org/viewvc?rev=720262&view=rev
Log:
AMQ-2013 - exclude xom dependency from xstream
Modified:
activemq/trunk/pom.xml
Modified: activemq/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/activemq/trunk/pom.xml?rev=720262&r1=720261&r2=720262&view=diff
==============================================================================
--- activemq/trunk/pom.xml (original)
+++ activemq/trunk/pom.xml Mon Nov 24 11:13:17 2008
@@ -719,6 +719,14 @@
<groupId>com.thoughtworks.xstream</groupId>
<artifactId>xstream</artifactId>
<version>${xstream-version}</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>