Maven Repository - POM file for Spring mule-module-spring-config 2.0.2 2.0.2

Summary

Spring Config.

Mule Builder for use with Spring 2.X Namespace based XML configuration..

Declaration

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.2</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.

Depends on

The mule-module-spring-config-2.0.2 has 2 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 2.0.2
Mule server and core classes
27
Developmentmule-core 2.0.2
Mule server and core classes
27




Depended by

The following table lists the most popular artifacts which are depending on mule-module-spring-config-2.0.2. Their categories and depend by count are also listed.

CategoryArtifactDepended By Count
XMLmule-module-xml 2.0.2
Functionality for working with XML
7
Developmentmule-module-builders 2.0.2
Standard configuration builders for Mule
5
Testingmule-tests-functional 2.0.2
Mule functional test framework (TCK)
30

Plugin

The following plugins are used in the mule-module-spring-config-2.0.2.jar

  1. maven-surefire-plugin

Packages

The following packages are defined in the mule-module-spring-config-2.0.2.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




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>2.0.2</version>
    </parent>
    <artifactId>mule-module-spring-config</artifactId>
    <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>

    <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</groupId>
            <artifactId>mule-core</artifactId>
            <version>${version}</version>
            <scope>test</scope>
            <type>test-jar</type>
        </dependency>
</dependencies>
</project>