Spring Config.
Mule Builder for use with Spring 2.X Namespace based XML configuration..
Here is the list of declaration for mule-module-spring-config. 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-config</artifactId> <version>2.1.0</version> </dependency>
If you think this Maven repository POM file listing for mule-module-spring-config is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The following packages are defined in the mule-module-spring-config-2.1.0.jar
org.mule.config.spring org.mule.config.spring.editors org.mule.config.spring.factories org.mule.config.spring.handlers org.mule.config.spring.jndi org.mule.config.spring.parsers org.mule.config.spring.parsers.assembly org.mule.config.spring.parsers.assembly.configuration org.mule.config.spring.parsers.collection org.mule.config.spring.parsers.delegate org.mule.config.spring.parsers.generic org.mule.config.spring.parsers.processors org.mule.config.spring.parsers.specific org.mule.config.spring.parsers.specific.endpoint org.mule.config.spring.parsers.specific.endpoint.support org.mule.config.spring.parsers.specific.properties org.mule.config.spring.parsers.specific.tls org.mule.config.spring.processors org.mule.config.spring.util
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>2.1.0</version> </parent> <artifactId>mule-module-spring-config</artifactId> <packaging>bundle</packaging> <name>Spring Config</name> <description> Mule Builder for use with Spring 2.X Namespace based XML configuration. </description> <dependencies> <dependency> <groupId>org.mule</groupId> <artifactId>mule-core</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> </dependency> <!-- Unit tests --> <dependency> <groupId>org.mule</groupId> <artifactId>mule-core</artifactId> <version>${version}</version> <scope>test</scope> <type>test-jar</type> </dependency> </dependencies> </project>