Maven Repository - POM file for Web Service mule-transport-axis 2.0.1 2.0.1

Summary

SOAP Transport: Axis.

A Mule transport for Soap Connectivity using Axis..

Declaration

Here is the list of declaration for mule-transport-axis. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>org.mule.transports</groupId>
   <artifactId>mule-transport-axis</artifactId>
   <version>2.0.1</version>
</dependency>

If you think this Maven repository POM file listing for mule-transport-axis is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Depends on

The mule-transport-axis-2.0.1 has 12 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.

CategoryArtifactDepended By Count
Httpmule-transport-http 2.0.1
A Mule transport for Http Connectivity. This transport supplies a simple Http Server implementation.
8
Web Serviceaxis 1.4
POM was created from deploy:deploy-file
98
Web Serviceaxis-jaxrpc 1.4
POM was created from deploy:deploy-file
11
Web Serviceaxis-saaj 1.4
POM was created from deploy:deploy-file
9
Web Servicewsdl4j 1.6.1
Java stub generator for WSDL
33
Developmentmule-module-client 2.0.1
MuleClient is a simple interface for Mule clients to send and receive events from local or remote Mule Servers.
23
Springmule-module-spring-extras 2.0.1
Non-core functionality provided by Spring such as transactions, remoting, data sources, etc.
10
JMSmule-transport-jms 2.0.1
A Mule transport for Jms Connectivity.
6




Packages

The following packages are defined in the mule-transport-axis-2.0.1.jar

org.mule.transport.soap.axis
org.mule.transport.soap.axis.config
org.mule.transport.soap.axis.extensions
org.mule.transport.soap.axis.extras
org.mule.transport.soap.axis.i18n
org.mule.transport.soap.axis.transport
org.mule.transport.soap.axis.transport.jms
org.mule.transport.soap.axis.transport.pop3
org.mule.transport.soap.axis.transport.smtp
org.mule.transport.soap.axis.transport.vm
org.mule.transport.soap.axis.wsdl




POM File Source

Here is the content of the POM file.

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.mule.transports</groupId>
        <artifactId>mule-transports</artifactId>
        <version>2.0.1</version>
    </parent>
    <artifactId>mule-transport-axis</artifactId>
    <!--<packaging>bundle</packaging>-->
    <name>SOAP Transport: Axis</name>
    <description>A Mule transport for Soap Connectivity using Axis.</description>

    <profiles>
        <profile>
            <id>tests-external</id>
            <dependencies>
                <dependency>
                    <groupId>org.mule.tests</groupId>
                    <artifactId>mule-tests-external-axis</artifactId>
                    <version>${version}</version>
                    <type>war</type>
                </dependency>
                <dependency>
                    <groupId>org.mule.tests</groupId>
                    <artifactId>mule-tests-external-common</artifactId>
                    <version>${version}</version>
                    <type>jar</type>
                </dependency>
            </dependencies>
        </profile>
        <profile>
            <id>osgi</id>
            <build>
                <plugins>
                    <plugin>
                        <groupId>org.apache.felix</groupId>
                        <artifactId>maven-bundle-plugin</artifactId>
                        <configuration>
                            <instructions>
                                <Export-Package>
                                    org.mule.transport.soap.axis.*
                                </Export-Package>
                            </instructions>
                        </configuration>
                    </plugin>
                </plugins>
            </build>
        </profile>
    </profiles>

    <dependencies>
        <dependency>
            <groupId>org.mule.transports</groupId>
            <artifactId>mule-transport-soap</artifactId>
            <version>${version}</version>
        </dependency>
        <dependency>
            <groupId>org.mule.transports</groupId>
            <artifactId>mule-transport-http</artifactId>
            <version>${version}</version>
        </dependency>

        <!-- Needed for common SOAP test classes -->
        <dependency>
            <groupId>org.mule.transports</groupId>
            <artifactId>mule-transport-soap</artifactId>
            <version>${version}</version>
            <type>test-jar</type>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>org.apache.axis</groupId>
            <artifactId>axis</artifactId>
            <version>1.4</version>
            <exclusions>
                <!-- we like slf4j -->
                <exclusion>
                    <groupId>commons-logging</groupId>
                    <artifactId>commons-logging</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <!-- 
             org.apache.axis:axis does not declare its dependencies properly. The
             alternative is to use axis:axis but that has dependencies with missing
             POMs. The duplication here seems to be the lesser evil.
             -->
        <dependency>
            <groupId>org.apache.axis</groupId>
            <artifactId>axis-jaxrpc</artifactId>
            <version>1.4</version>
        </dependency>
        <!-- This library causes conflicts with the SAAJ library used by CXF,
          and the decision was made to make CXF work OOTB.  Therefore the 
          axis-saaj library must be provided manually on the classpath -->
        <dependency>
            <groupId>org.apache.axis</groupId>
            <artifactId>axis-saaj</artifactId>
            <version>1.4</version>
            <scope>provided</scope>
        </dependency>
        <!-- Use the latest version of WSDL4J as it is compatible with CXF -->
        <dependency>
            <groupId>wsdl4j</groupId>
            <artifactId>wsdl4j</artifactId>
            <version>1.6.1</version>
        </dependency>
        <dependency>
            <groupId>commons-httpclient</groupId>
            <artifactId>commons-httpclient</artifactId>
            <scope>test</scope>
            <exclusions>
                <!-- we like slf4j -->
                <exclusion>
                    <groupId>commons-logging</groupId>
                    <artifactId>commons-logging</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <!-- needed by the Axis Service component -->
        <dependency>
            <groupId>org.mule.modules</groupId>
            <artifactId>mule-module-client</artifactId>
            <version>${version}</version>
        </dependency>
        <!-- need to explicitly mark javax.mail as provided -->
        <dependency>
            <groupId>javax.mail</groupId>
            <artifactId>mail</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.mule.modules</groupId>
            <artifactId>mule-module-spring-extras</artifactId>
            <version>${version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.mule.transports</groupId>
            <artifactId>mule-transport-jms</artifactId>
            <version>${version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.mule.transports</groupId>
            <artifactId>mule-transport-vm</artifactId>
            <version>${version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.mule.modules</groupId>
            <artifactId>mule-module-acegi</artifactId>
            <version>${version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.activemq</groupId>
            <artifactId>activemq-core</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>