Download mule-module-sxc-3.5.0.jar file

Introduction

You can download mule-module-sxc-3.5.0.jar in this page.

License

Open Source

Type List

mule-module-sxc-3.5.0.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.mule.modules/mule-module-sxc/pom.properties
META-INF/maven/org.mule.modules/mule-module-sxc/pom.xml
META-INF/mule-sxc.xsd
META-INF/services/org/mule/config/registry-bootstrap.properties
META-INF/services/org/mule/i18n/sxc-messages.properties
META-INF/spring.handlers
META-INF/spring.schemas
org.mule.module.sxc.FilterEventHandler.class
org.mule.module.sxc.StopProcessingException.class
org.mule.module.sxc.SxcFilter.class
org.mule.module.sxc.SxcFilteringOutboundRouter.class
org.mule.module.sxc.SxcNamespaceHandler.class
org.mule.module.sxc.UndefinedMatchException.class

Pom

mule-module-sxc-3.5.0.pom file content.

<?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.5.0</version>
    </parent>
    <artifactId>mule-module-sxc</artifactId>
    <packaging>jar</packaging>
    <name>SXC Module</name>
    <description>Efficiently route messages using streaming XPath.</description>

    <properties>
        <licensePath>../../LICENSE_HEADER.txt</licensePath>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.mule</groupId>
            <artifactId>mule-core</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>org.mule.modules</groupId>
            <artifactId>mule-module-spring-config</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>org.mule.modules</groupId>
            <artifactId>mule-module-xml</artifactId>
            <version>${project.version}</version>
        </dependency>

        <!-- For unit tests only -->
        <dependency>
            <groupId>org.mule</groupId>
            <artifactId>mule-core</artifactId>
            <version>${project.version}</version>
            <scope>test</scope>
            <type>test-jar</type>
        </dependency>
        <dependency>
            <groupId>org.mule.tests</groupId>
            <artifactId>mule-tests-functional</artifactId>
            <version>${project.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.mule.transports</groupId>
            <artifactId>mule-transport-vm</artifactId>
            <version>${project.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.mule.transports</groupId>
            <artifactId>mule-transport-http</artifactId>
            <version>${project.version}</version>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>com.envoisolutions.sxc</groupId>
            <artifactId>sxc-xpath</artifactId>
            <version>${sxcVersion}</version>
            <exclusions>
                <exclusion>
                    <groupId>stax</groupId>
                    <artifactId>stax-api</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>com.envoisolutions.sxc</groupId>
            <artifactId>sxc-runtime</artifactId>
            <version>${sxcVersion}</version>
            <exclusions>
                <exclusion>
                    <groupId>stax</groupId>
                    <artifactId>stax-api</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>com.envoisolutions.sxc</groupId>
            <artifactId>sxc-core</artifactId>
            <version>${sxcVersion}</version>
            <exclusions>
                <exclusion>
                    <groupId>stax</groupId>
                    <artifactId>stax-api</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <!-- Without this the compilation aspect of SXC doesn't work so hot -->
            <plugin>
                <artifactId>maven-surefire-plugin</artifactId>
                <configuration>
                    <forkMode>none</forkMode>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>

POM Entry

<dependency>
   <groupId>org.mule.modules</groupId>
   <artifactId>mule-module-sxc</artifactId>
   <version>3.5.0</version>
</dependency>

Download

If you think the following mule-module-sxc-3.5.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download mule-module-sxc-3.5.0.jar file




PreviousNext

Related