Author: veithen Date: Fri May 10 09:48:18 2013 New Revision: 1480969 URL: http://svn.apache.org/r1480969 Log: AXIS2-5434: Added the transports migrated from the old transports project to the distribution (but without the 3rd party dependency, exactly as we did in Axis2 1.4.1).
Modified: axis/axis2/java/core/trunk/modules/distribution/pom.xml Modified: axis/axis2/java/core/trunk/modules/distribution/pom.xml URL: http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/distribution/pom.xml?rev=1480969&r1=1480968&r2=1480969&view=diff ============================================================================== --- axis/axis2/java/core/trunk/modules/distribution/pom.xml (original) +++ axis/axis2/java/core/trunk/modules/distribution/pom.xml Fri May 10 09:48:18 2013 @@ -194,6 +194,57 @@ <type>aar</type> </dependency> + <!-- Additional transports (with 3rd party dependencies excludes as in Axis2 1.4.1) --> + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>axis2-transport-jms</artifactId> + <version>${project.version}</version> + <exclusions> + <exclusion> + <groupId>org.apache.geronimo.specs</groupId> + <artifactId>geronimo-jms_1.1_spec</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.geronimo.specs</groupId> + <artifactId>geronimo-jta_1.0.1B_spec</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>axis2-transport-mail</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>axis2-transport-tcp</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>axis2-transport-udp</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>axis2-transport-xmpp</artifactId> + <version>${project.version}</version> + <exclusions> + <exclusion> + <groupId>jivesoftware</groupId> + <artifactId>smack</artifactId> + </exclusion> + <exclusion> + <groupId>jivesoftware</groupId> + <artifactId>smackx</artifactId> + </exclusion> + <exclusion> + <groupId>commons-lang</groupId> + <artifactId>commons-lang</artifactId> + </exclusion> + </exclusions> + </dependency> + <!-- Axis2 has always been shipped with Sun's implementations of JavaMail and JAF, although Axiom depends on (and has been tested with) Geronimo's implementations. This should probably reevaluated. -->