You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by db...@apache.org on 2010/10/01 01:29:15 UTC

svn commit: r1003333 - /openejb/branches/openejb-3.1.x/container/openejb-core/pom.xml

Author: dblevins
Date: Thu Sep 30 23:29:15 2010
New Revision: 1003333

URL: http://svn.apache.org/viewvc?rev=1003333&view=rev
Log:
excludes to weed out unneeded spring and osgi deps pulled in by activemq 5

Modified:
    openejb/branches/openejb-3.1.x/container/openejb-core/pom.xml

Modified: openejb/branches/openejb-3.1.x/container/openejb-core/pom.xml
URL: http://svn.apache.org/viewvc/openejb/branches/openejb-3.1.x/container/openejb-core/pom.xml?rev=1003333&r1=1003332&r2=1003333&view=diff
==============================================================================
--- openejb/branches/openejb-3.1.x/container/openejb-core/pom.xml (original)
+++ openejb/branches/openejb-3.1.x/container/openejb-core/pom.xml Thu Sep 30 23:29:15 2010
@@ -275,6 +275,24 @@
     <dependency>
       <groupId>org.apache.activemq</groupId>
       <artifactId>activemq-core</artifactId>
+      <exclusions>
+        <exclusion>
+          <groupId>org.springframework</groupId>
+          <artifactId>spring-context</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.springframework.osgi</groupId>
+          <artifactId>spring-osgi-core</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.springframework.osgi</groupId>
+          <artifactId>spring-osgi-io</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.osgi</groupId>
+          <artifactId>osgi-core</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
     <!-- End ActiveMQ -->
     <dependency>