You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by rm...@apache.org on 2012/02/27 08:45:06 UTC

svn commit: r1294050 - /openejb/trunk/openejb/pom.xml

Author: rmannibucau
Date: Mon Feb 27 07:45:06 2012
New Revision: 1294050

URL: http://svn.apache.org/viewvc?rev=1294050&view=rev
Log:
avoiding not needed dependencies (javassist is speicifed in openejb so no need of the openwebbeans one, c3p0 is useless since we use commons dbcp)

Modified:
    openejb/trunk/openejb/pom.xml

Modified: openejb/trunk/openejb/pom.xml
URL: http://svn.apache.org/viewvc/openejb/trunk/openejb/pom.xml?rev=1294050&r1=1294049&r2=1294050&view=diff
==============================================================================
--- openejb/trunk/openejb/pom.xml (original)
+++ openejb/trunk/openejb/pom.xml Mon Feb 27 07:45:06 2012
@@ -1215,6 +1215,10 @@
             <groupId>javax.transaction</groupId>
             <artifactId>jta</artifactId>
           </exclusion>
+          <exclusion>
+            <groupId>c3p0</groupId>
+            <artifactId>c3p0</artifactId>
+          </exclusion>
         </exclusions>
       </dependency>
       <dependency>
@@ -1333,6 +1337,12 @@
         <groupId>org.apache.openwebbeans</groupId>
         <artifactId>openwebbeans-impl</artifactId>
         <version>${org.apache.openwebbeans.version}</version>
+        <exclusions>
+          <exclusion>
+            <groupId>javassist</groupId>
+            <artifactId>javassist</artifactId>
+          </exclusion>
+        </exclusions>
       </dependency>
       <dependency>
         <groupId>org.apache.openwebbeans</groupId>