Maven Repository - POM file for XML mule-module-xml 2.0.0-M2 2.0.0-M2

Summary

XML Extensions.

Functionality for working with XML.

Declaration

Here is the list of declaration for mule-module-xml. 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-xml</artifactId>
   <version>2.0.0-M2</version>
</dependency>

If you think this Maven repository POM file listing for mule-module-xml 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-xml-2.0.0-M2 has 6 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.0-M2
Mule server and core classes
21
Java Libraryxpp3_min 1.1.3.4.O
MXP1 is a stable XmlPull parsing engine that is based on ideas from XPP and in particular XPP2 but completely revised and rewritten to take the best advantage of latest JIT JVMs such as Hotspot in JDK 1.4+.
25
XML Parserstax-api 1.0.1
StAX API is the standard java XML processing API defined by JSR-173
254
XML Parserwstx-asl 3.2.2
Woodstox is a high-performance XML processor that implements Stax (JSR-173) API
81




Depended by

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

CategoryArtifactDepended By Count
Developmentmule-module-client 2.0.0-M2
MuleClient is a simple interface for Mule clients to send and receive events from local or remote Mule Servers.
26
Testingmule-tests-functional 2.0.0-M2
Mule functional test framework (TCK)
26
Httpmule-transport-http 2.0.0-M2
A Mule transport for Http Connectivity. This transport supplies a simple Http Server implementation.
5

Packages

The following packages are defined in the mule-module-xml-2.0.0-M2.jar

org.mule.config.spring.handlers
org.mule.config.spring.parsers
org.mule.interceptors
org.mule.routing.filters.xml
org.mule.routing.outbound
org.mule.transformers.xml
org.mule.transformers.xml.wire
org.mule.util
org.mule.util.properties




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.0-M2</version>
    </parent>
    <artifactId>mule-module-xml</artifactId>
    <!--<packaging>bundle</packaging>-->
    <name>XML Extensions</name>
    <description>Functionality for working with XML</description>

    <profiles>
        <profile>
            <id>java14</id>
            <activation>
                <jdk>1.4</jdk>
                <activeByDefault>true</activeByDefault>
            </activation>
            <dependencies>
                <!--
                Sun's 1.4.x JVMs come with a bundled Crimson XML parser.
                Unfortunately it is very buggy and does not support validation
                against an XML Schema, so we have to unconditionally include
                both xml-apis and xerces (in matching versions!) for JDK 1.4.
                -->
                <dependency>
                    <groupId>xml-apis</groupId>
                    <artifactId>xml-apis</artifactId>
                </dependency>
                <dependency>
                    <groupId>xerces</groupId>
                    <artifactId>xercesImpl</artifactId>
                </dependency>
                <!-- Used by Xml based filters and transformers -->
                <dependency>
                    <groupId>dom4j</groupId>
                    <artifactId>dom4j</artifactId>
                    <version>1.4</version>
                    <exclusions>
                        <exclusion>
                            <groupId>jaxen</groupId>
                            <artifactId>jaxen</artifactId>
                        </exclusion>
                        <exclusion>
                            <groupId>relaxngDatatype</groupId>
                            <artifactId>relaxngDatatype</artifactId>
                        </exclusion>
                        <exclusion>
                            <groupId>isorelax</groupId>
                            <artifactId>isorelax</artifactId>
                        </exclusion>
                        <exclusion>
                            <groupId>saxpath</groupId>
                            <artifactId>saxpath</artifactId>
                        </exclusion>
                        <exclusion>
                            <groupId>msv</groupId>
                            <artifactId>msv</artifactId>
                        </exclusion>
                    </exclusions>
                </dependency>
                <!-- JXPath filtering of events -->
                <dependency>
                    <groupId>commons-jxpath</groupId>
                    <artifactId>commons-jxpath</artifactId>
                    <version>1.2</version>
                    <exclusions>
                        <!-- we want newer collections via core -->
                        <exclusion>
                            <groupId>commons-collections</groupId>
                            <artifactId>commons-collections</artifactId>
                        </exclusion>
                        <!-- we want newer beanutils via core -->
                        <exclusion>
                            <groupId>commons-beanutils</groupId>
                            <artifactId>commons-beanutils</artifactId>
                        </exclusion>
                        <!-- we like slf4j -->
                        <exclusion>
                            <groupId>commons-logging</groupId>
                            <artifactId>commons-logging</artifactId>
                        </exclusion>
                        <!-- totally outdated -->
                        <exclusion>
                            <groupId>xerces</groupId>
                            <artifactId>xerces</artifactId>
                        </exclusion>
                        <exclusion>
                            <!-- not required; likely a m1 POM conversion bug -->
                            <groupId>ant</groupId>
                            <artifactId>ant-optional</artifactId>
                        </exclusion>
                        <exclusion>
                            <!-- exclude older jdom-b9 -->
                            <groupId>jdom</groupId>
                            <artifactId>jdom</artifactId>
                        </exclusion>
                        <exclusion>
                            <!-- exclude older Servlet 2.2 spec jar -->
                            <groupId>javax.servlet</groupId>
                            <artifactId>servlet-api</artifactId>
                        </exclusion>
                        <exclusion>
                            <groupId>junit</groupId>
                            <artifactId>junit</artifactId>
                        </exclusion>
                    </exclusions>
                </dependency>
            </dependencies>
        </profile>
        <profile>
            <id>java5</id>
            <activation>
                <jdk>1.5</jdk>
            </activation>
            <dependencies>
                <dependency>
                    <groupId>dom4j</groupId>
                    <artifactId>dom4j</artifactId>
                    <version>1.4</version>
                    <exclusions>
                        <!-- IMPORTANT for JDK5 -->
                        <exclusion>
                            <groupId>xml-apis</groupId>
                            <artifactId>xml-apis</artifactId>
                        </exclusion>
                        <exclusion>
                            <groupId>jaxen</groupId>
                            <artifactId>jaxen</artifactId>
                        </exclusion>
                        <exclusion>
                            <groupId>relaxngDatatype</groupId>
                            <artifactId>relaxngDatatype</artifactId>
                        </exclusion>
                        <exclusion>
                            <groupId>isorelax</groupId>
                            <artifactId>isorelax</artifactId>
                        </exclusion>
                        <exclusion>
                            <groupId>saxpath</groupId>
                            <artifactId>saxpath</artifactId>
                        </exclusion>
                        <exclusion>
                            <groupId>msv</groupId>
                            <artifactId>msv</artifactId>
                        </exclusion>
                    </exclusions>
                </dependency>
                <!-- JXPath filtering of events -->
                <dependency>
                    <groupId>commons-jxpath</groupId>
                    <artifactId>commons-jxpath</artifactId>
                    <version>1.2</version>
                    <exclusions>
                        <!-- we want newer collections via core -->
                        <exclusion>
                            <groupId>commons-collections</groupId>
                            <artifactId>commons-collections</artifactId>
                        </exclusion>
                        <!-- we want newer beanutils via core -->
                        <exclusion>
                            <groupId>commons-beanutils</groupId>
                            <artifactId>commons-beanutils</artifactId>
                        </exclusion>
                        <!-- we like slf4j -->
                        <exclusion>
                            <groupId>commons-logging</groupId>
                            <artifactId>commons-logging</artifactId>
                        </exclusion>
                        <!-- IMPORTANT for JDK5 -->
                        <exclusion>
                            <groupId>xml-apis</groupId>
                            <artifactId>xml-apis</artifactId>
                        </exclusion>
                        <!-- totally outdated -->
                        <exclusion>
                            <groupId>xerces</groupId>
                            <artifactId>xerces</artifactId>
                        </exclusion>
                        <exclusion>
                            <!-- not required; likely a m1 POM conversion bug -->
                            <groupId>ant</groupId>
                            <artifactId>ant-optional</artifactId>
                        </exclusion>
                        <exclusion>
                            <!-- exclude older jdom-b9 -->
                            <groupId>jdom</groupId>
                            <artifactId>jdom</artifactId>
                        </exclusion>
                        <exclusion>
                            <!-- exclude older Servlet 2.2 spec jar -->
                            <groupId>javax.servlet</groupId>
                            <artifactId>servlet-api</artifactId>
                        </exclusion>
                    </exclusions>
                </dependency>
            </dependencies>
        </profile>
        <profile>
            <id>osgi</id>
            <build>
                <plugins>
                    <plugin>
                        <groupId>org.apache.felix</groupId>
                        <artifactId>maven-bundle-plugin</artifactId>
                        <configuration>
                            <instructions>
                                <!-- TODO This module needs reorganization in order to properly export its packages. -->
                                <Export-Package>
                                    org.mule.transformers.xml,
                                    org.mule.routing.filters.xml
                                </Export-Package>
                            </instructions>
                        </configuration>
                    </plugin>
                </plugins>
            </build>
        </profile>
    </profiles>

    <dependencies>
        <dependency>
            <groupId>org.mule</groupId>
            <artifactId>mule-core</artifactId>
            <version>${version}</version>
        </dependency>
        <!-- Used for de/serialising objects -->
        <dependency>
            <groupId>com.thoughtworks.xstream</groupId>
            <artifactId>xstream</artifactId>
            <version>1.2.1</version>
        </dependency>
        <dependency>
            <groupId>xpp3</groupId>
            <artifactId>xpp3_min</artifactId>
            <version>1.1.3.4.O</version>
        </dependency>
        <!-- StAX rocks! (keep in sync with XFire) -->
        <dependency>
            <groupId>stax</groupId>
            <artifactId>stax-api</artifactId>
            <version>1.0.1</version>
        </dependency>
        <dependency>
            <groupId>org.codehaus.woodstox</groupId>
            <artifactId>wstx-asl</artifactId>
            <version>3.2.2</version>
        </dependency>
        <!-- Better testing of XML -->        
        <dependency>
            <groupId>xmlunit</groupId>
            <artifactId>xmlunit</artifactId>
            <version>1.0</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>javax.activation</groupId>
            <artifactId>activation</artifactId>
            <scope>provided</scope>
        </dependency>
    </dependencies>
</project>