You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by dw...@apache.org on 2008/09/02 19:19:21 UTC

svn commit: r691323 - /geronimo/server/branches/2.1/buildsupport/car-maven-plugin/pom.xml

Author: dwoods
Date: Tue Sep  2 10:19:20 2008
New Revision: 691323

URL: http://svn.apache.org/viewvc?rev=691323&view=rev
Log:
GERONIMO-4071 also exclude javax.activation which was showing up in the dependency:tree and include geronimo-activation spec instead

Modified:
    geronimo/server/branches/2.1/buildsupport/car-maven-plugin/pom.xml

Modified: geronimo/server/branches/2.1/buildsupport/car-maven-plugin/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/server/branches/2.1/buildsupport/car-maven-plugin/pom.xml?rev=691323&r1=691322&r2=691323&view=diff
==============================================================================
--- geronimo/server/branches/2.1/buildsupport/car-maven-plugin/pom.xml (original)
+++ geronimo/server/branches/2.1/buildsupport/car-maven-plugin/pom.xml Tue Sep  2 10:19:20 2008
@@ -42,11 +42,23 @@
         <dependency>
             <groupId>javax.xml.bind</groupId>
             <artifactId>jaxb-api</artifactId>
+            <exclusions>
+                <exclusion>
+                    <groupId>javax.activation</groupId>
+                    <artifactId>activation</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
 
         <dependency>
             <groupId>com.sun.xml.bind</groupId>
             <artifactId>jaxb-impl</artifactId>
+            <exclusions>
+                <exclusion>
+                    <groupId>javax.activation</groupId>
+                    <artifactId>activation</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
 
         <dependency>