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.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-2.0.0-RC2 has 1 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 2.0.0-RC2 Mule server and core classes | 22 |
The following table lists the most popular artifacts which are depending on mule-module-spring-config-2.0.0-RC2. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
XML | mule-module-xml 2.0.0-RC2 Functionality for working with XML | 7 |
Testing | mule-tests-functional 2.0.0-RC2 Mule functional test framework (TCK) | 25 |
The following plugins are used in the mule-module-spring-config-2.0.0-RC2.jar
The following packages are defined in the mule-module-spring-config-2.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.processors org.mule.config.spring.util org.mule.util.object
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.0.0-RC2</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> <build> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <!-- TODO do not use mule-test-exclusions.txt for now as this module still needs to be sorted out --> <excludes> <exclude>**/*</exclude> </excludes> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>osgi</id> <build> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <configuration> <instructions> <Export-Package> org.mule.extras.spring.config, org.mule.extras.spring.events, org.mule.extras.spring.remoting, org.mule.extras.spring.transaction </Export-Package> </instructions> </configuration> </plugin> </plugins> </build> </profile> </profiles> <dependencies> <!-- do not include the org.springframework:spring depencency kitchen sink but rather include each spring module individually. This allows for finer grained management of dependencies. --> <!-- Spring-based configuration is part of mule-core for 2.x --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-beans</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> </dependency> <dependency> <groupId>org.mule</groupId> <artifactId>mule-core</artifactId> <version>${version}</version> </dependency> <!-- <dependency> <groupId>org.mule.modules</groupId> <artifactId>mule-module-spring-builder</artifactId> <version>${version}</version> </dependency> --> </dependencies> </project>