You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by ga...@apache.org on 2009/01/06 21:04:42 UTC

svn commit: r732090 - /webservices/axis2/trunk/java/modules/parent/pom.xml

Author: gawor
Date: Tue Jan  6 12:04:41 2009
New Revision: 732090

URL: http://svn.apache.org/viewvc?rev=732090&view=rev
Log:
deal with circular dependency between axis2 and axis2-transports

Modified:
    webservices/axis2/trunk/java/modules/parent/pom.xml

Modified: webservices/axis2/trunk/java/modules/parent/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/parent/pom.xml?rev=732090&r1=732089&r2=732090&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/parent/pom.xml (original)
+++ webservices/axis2/trunk/java/modules/parent/pom.xml Tue Jan  6 12:04:41 2009
@@ -664,16 +664,34 @@
                 <groupId>${project.groupId}</groupId>
                 <artifactId>axis2-transport-http</artifactId>
                 <version>${transport.http.version}</version>
+                <exclusions>
+                    <exclusion>
+                        <groupId>org.apache.axis2</groupId>
+                        <artifactId>axis2-kernel</artifactId>
+                    </exclusion>
+                </exclusions>
             </dependency>
             <dependency>
                 <groupId>${project.groupId}</groupId>
                 <artifactId>axis2-transport-tcp</artifactId>
                 <version>${transport.tcp.version}</version>
+                <exclusions>
+                    <exclusion>
+                        <groupId>org.apache.axis2</groupId>
+                        <artifactId>axis2-kernel</artifactId>
+                    </exclusion>
+                </exclusions>
             </dependency>
             <dependency>
                 <groupId>${project.groupId}</groupId>
                 <artifactId>axis2-transport-local</artifactId>
                 <version>${transport.local.version}</version>
+                <exclusions>
+                    <exclusion>
+                        <groupId>org.apache.axis2</groupId>
+                        <artifactId>axis2-kernel</artifactId>
+                    </exclusion>
+                </exclusions>
             </dependency>
             <dependency>
                 <groupId>org.apache.ant</groupId>