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>3.0.0-RC2</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 mule-module-spring-config-3.0.0-RC2 has 4 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 |
---|---|---|
Development | mule-core 3.0.0-RC2 Mule server and core classes | 41 |
JEE | mule-module-annotations 3.0.0-RC2 Annotations for configuring Mule at various levels such as services, entry points, transformers and expressions. | 5 |
Development | mule-core 3.0.0-RC2 Mule server and core classes | 41 |
The following table lists the most popular artifacts which are depending on mule-module-spring-config-3.0.0-RC2. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
TCP | mule-transport-tcp 3.0.0-RC2 A Mule transport for Tcp Connectivity. This transport supplies a tcp Server and client implementation. | 11 |
Testing | mule-tests-functional 3.0.0-RC2 Mule functional test framework (TCK) | 39 |
XML | mule-module-xml 3.0.0-RC2 Functionality for working with XML | 15 |
Spring | mule-module-spring-extras 3.0.0-RC2 Non-core functionality provided by Spring such as transactions, remoting, data sources, etc. | 6 |
Development | mule-module-client 3.0.0-RC2 MuleClient is a simple interface for Mule clients to send and receive events from local or remote Mule Servers. | 32 |
The following packages are defined in the mule-module-spring-config-3.0.0-RC2.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>3.0.0-RC2</version> </parent> <artifactId>mule-module-spring-config</artifactId> <packaging>jar</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> <version>${version}</version> </dependency> <dependency> <groupId>org.mule.modules</groupId> <artifactId>mule-module-boot</artifactId> <version>${version}</version> </dependency> <dependency> <groupId>org.mule.modules</groupId> <artifactId>mule-module-annotations</artifactId> <version>${version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> </dependency> <!-- Unit tests --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mule</groupId> <artifactId>mule-core</artifactId> <version>${version}</version> <scope>test</scope> <type>test-jar</type> </dependency> <dependency> <groupId>dom4j</groupId> <artifactId>dom4j</artifactId> </dependency> <dependency> <groupId>jaxen</groupId> <artifactId>jaxen</artifactId> <version>${jaxenVersion}</version> <!-- see http://jira.codehaus.org/browse/MNG-3007 depending on whether jaxen is resolved via dist.codehaus.org or the central repo we get transitive dependencies that we don't want here --> <exclusions> <exclusion> <groupId>com.ibm.icu</groupId> <artifactId>icu4j</artifactId> </exclusion> <exclusion> <groupId>xalan</groupId> <artifactId>xalan</artifactId> </exclusion> <!-- no !"?$ XML parsers whatsoever --> <exclusion> <groupId>xml-apis</groupId> <artifactId>xml-apis</artifactId> </exclusion> <exclusion> <groupId>xerces</groupId> <artifactId>xercesImpl</artifactId> </exclusion> <exclusion> <groupId>xerces</groupId> <artifactId>xmlParserAPIs</artifactId> </exclusion> <exclusion> <groupId>xom</groupId> <artifactId>xom</artifactId> </exclusion> </exclusions> </dependency> </dependencies> </project>