Maven Repository - POM file for Spring mule-module-spring-extras 3.0.0-M4 3.0.0-M4

Summary

Spring Extras.

Non-core functionality provided by Spring such as transactions, remoting, data sources, etc..

Declaration

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

<dependency>
   <groupId>org.mule.modules</groupId>
   <artifactId>mule-module-spring-extras</artifactId>
   <version>3.0.0-M4</version>
</dependency>

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

Depends on

The mule-module-spring-extras-3.0.0-M4 has 9 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
Developmentmule-core 3.0.0-M4
Mule server and core classes
36
Springmule-module-spring-config 3.0.0-M4
Mule Builder for use with Spring 2.X Namespace based XML configuration.
32
Developmentmule-module-builders 3.0.0-M4
Standard configuration builders for Mule
6
Testingmule-tests-functional 3.0.0-M4
Mule functional test framework (TCK)
41
Developmentmule-module-client 3.0.0-M4
MuleClient is a simple interface for Mule clients to send and receive events from local or remote Mule Servers.
37
Httpmule-transport-http 3.0.0-M4
A Mule transport for Http Connectivity. This transport supplies a simple Http Server implementation.
18
TCPmule-transport-tcp 3.0.0-M4
A Mule transport for Tcp Connectivity. This transport supplies a tcp Server and client implementation.
13




Packages

The following packages are defined in the mule-module-spring-extras-3.0.0-M4.jar

org.mule.module.spring.events
org.mule.module.spring.i18n
org.mule.module.spring.remoting
org.mule.module.spring.transaction

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.modules</groupId>
        <artifactId>mule-modules</artifactId>
        <version>3.0.0-M4</version>
    </parent>
    <artifactId>mule-module-spring-extras</artifactId>
    <packaging>bundle</packaging>
    <name>Spring Extras</name>
    <description>
        Non-core functionality provided by Spring such as transactions, remoting, data sources, etc.
    </description>

    <dependencies>
        <dependency>
            <groupId>org.mule</groupId>
            <artifactId>mule-core</artifactId>
            <version>${version}</version>
        </dependency>
        <dependency>
            <groupId>org.mule.modules</groupId>
            <artifactId>mule-module-spring-config</artifactId>
            <version>${version}</version>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-aop</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-jdbc</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-jms</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-web</artifactId>
        </dependency>
        <!-- Used by MuleEventMulticaster -->
        <dependency>
            <groupId>org.mule.modules</groupId>
            <artifactId>mule-module-builders</artifactId>
            <version>${version}</version>
        </dependency>
        <dependency>
            <groupId>org.mule.modules</groupId>
            <artifactId>mule-module-management</artifactId>
            <version>${version}</version>
        </dependency>

        <!-- For test cases only -->
        <dependency>
            <groupId>org.mule.tests</groupId>
            <artifactId>mule-tests-functional</artifactId>
            <version>${version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.mule.modules</groupId>
            <artifactId>mule-module-client</artifactId>
            <version>${version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.mule.transports</groupId>
            <artifactId>mule-transport-http</artifactId>
            <version>${version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.mule.transports</groupId>
            <artifactId>mule-transport-tcp</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>mockobjects</groupId>
            <artifactId>mockobjects-core</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.geronimo.specs</groupId>
            <artifactId>geronimo-jms_1.1_spec</artifactId>
        </dependency>
         <dependency>
            <groupId>commons-collections</groupId>
            <artifactId>commons-collections</artifactId>
        </dependency>
    </dependencies>
</project>