Spring Extensions.
Provides extensions to use the Spring framework with Mule such as utilising the the spring container to build components managed by Mule..
Here is the list of declaration for mule-module-spring. 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</artifactId> <version>1.3.2</version> </dependency>
If you think this Maven repository POM file listing for mule-module-spring is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The mule-module-spring-1.3.2 has 10 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
Spring | spring 2.0 Spring Framework | 11 |
Development | mule-module-builders 1.3.2 Standard configuration builders for Mule | 5 |
Log | commons-logging 1.0.4 Commons Logging is a thin adapter allowing configurable bridging to other, well known logging systems. | 273 |
Data Structure | commons-collections 3.2 Types that extend and augment the Java Collections Framework. | 366 |
Development | mule-module-client 1.3.2 MuleClient is a simple interface for Mule clients to send and receive events from local or remote Mule Servers. | 5 |
The following packages are defined in the mule-module-spring-1.3.2.jar
org.mule.extras.spring org.mule.extras.spring.config org.mule.extras.spring.events org.mule.extras.spring.remoting org.mule.extras.spring.transaction
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?><project> <parent> <artifactId>mule-modules</artifactId> <groupId>org.mule.modules</groupId> <version>1.3.2</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>mule-module-spring</artifactId> <name>Spring Extensions</name> <version>1.3.2</version> <description>Provides extensions to use the Spring framework with Mule such as utilising the the spring container to build components managed by Mule.</description> <profiles> <profile> <id>java14</id> <activation> <jdk>1.4</jdk> </activation> <dependencies> <dependency> <groupId>xml-apis</groupId> <artifactId>xml-apis</artifactId> <version>1.3.03</version> </dependency> <dependency> <groupId>xerces</groupId> <artifactId>xercesImpl</artifactId> <version>2.8.1</version> </dependency> <dependency> <groupId>dom4j</groupId> <artifactId>dom4j</artifactId> <version>1.4</version> <exclusions> <exclusion> <artifactId>jaxen</artifactId> <groupId>jaxen</groupId> </exclusion> <exclusion> <artifactId>relaxngDatatype</artifactId> <groupId>relaxngDatatype</groupId> </exclusion> <exclusion> <artifactId>isorelax</artifactId> <groupId>isorelax</groupId> </exclusion> <exclusion> <artifactId>saxpath</artifactId> <groupId>saxpath</groupId> </exclusion> <exclusion> <artifactId>msv</artifactId> <groupId>msv</groupId> </exclusion> </exclusions> </dependency> </dependencies> </profile> <profile> <id>java5</id> <activation> <jdk>1.5</jdk> </activation> <dependencies> <dependency> <groupId>dom4j</groupId> <artifactId>dom4j</artifactId> <version>1.4</version> <exclusions> <exclusion> <artifactId>xml-apis</artifactId> <groupId>xml-apis</groupId> </exclusion> <exclusion> <artifactId>jaxen</artifactId> <groupId>jaxen</groupId> </exclusion> <exclusion> <artifactId>relaxngDatatype</artifactId> <groupId>relaxngDatatype</groupId> </exclusion> <exclusion> <artifactId>isorelax</artifactId> <groupId>isorelax</groupId> </exclusion> <exclusion> <artifactId>saxpath</artifactId> <groupId>saxpath</groupId> </exclusion> <exclusion> <artifactId>msv</artifactId> <groupId>msv</groupId> </exclusion> </exclusions> </dependency> </dependencies> </profile> </profiles> <dependencies> <dependency> <groupId>org.mule.tests</groupId> <artifactId>mule-tests-functional</artifactId> <version>1.3.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring</artifactId> <version>2.0</version> </dependency> <dependency> <groupId>org.mule.modules</groupId> <artifactId>mule-module-builders</artifactId> <version>1.3.2</version> </dependency> <dependency> <groupId>org.mule.modules</groupId> <artifactId>mule-module-management</artifactId> <version>1.3.2</version> </dependency> <dependency> <groupId>org.apache.geronimo.specs</groupId> <artifactId>geronimo-jms_1.1_spec</artifactId> <version>1.0.1</version> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>1.0.4</version> </dependency> <dependency> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> <version>3.2</version> </dependency> <dependency> <groupId>org.mule.modules</groupId> <artifactId>mule-module-client</artifactId> <version>1.3.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mule.transports</groupId> <artifactId>mule-transport-http</artifactId> <version>1.3.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mule.transports</groupId> <artifactId>mule-transport-vm</artifactId> <version>1.3.2</version> <scope>test</scope> </dependency> </dependencies> <distributionManagement> <status>deployed</status> </distributionManagement> </project>