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

    <dependencies>
        <dependency>
            <groupId>org.mule</groupId>
            <artifactId>mule-core</artifactId>
        </dependency>
        <dependency>
            <groupId>org.mule.modules</groupId>
            <artifactId>mule-module-spring-config</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
        </dependency>
        <dependency>
            <groupId>dom4j</groupId>  
            <artifactId>dom4j.osgi</artifactId>
            <version>${dom4jVersion}</version>
        </dependency>
        <!-- JXPath filtering of events -->
        <dependency>
            <groupId>commons-jxpath</groupId>
            <artifactId>commons-jxpath.osgi</artifactId>
        </dependency>
        <!-- Used for de/serialising objects -->
        <dependency>
            <groupId>com.thoughtworks.xstream</groupId>
            <artifactId>xstream.osgi</artifactId>
            <version>${xstreamVersion}</version>
        </dependency>
        <dependency>
            <groupId>xpp3</groupId>
            <artifactId>xpp3_min.osgi</artifactId>
            <version>1.1.3.4.O</version>
        </dependency>
        <dependency>
            <groupId>org.apache.geronimo.specs</groupId>
            <artifactId>geronimo-stax-api_1.0_spec</artifactId>            
        </dependency>
        <dependency>
            <groupId>org.codehaus.woodstox</groupId>
            <artifactId>wstx-asl.osgi</artifactId>
            <version>${woodstoxVersion}</version>
        </dependency>
        <dependency>
            <groupId>jaxen</groupId>
            <artifactId>jaxen.osgi</artifactId>
            <version>${jaxenVersion}</version>
        </dependency>
        <dependency>
            <groupId>net.java.dev.stax-utils</groupId>
            <artifactId>stax-utils.osgi</artifactId>
        </dependency>
        <!-- XSLT Support -->
        <dependency>
            <groupId>net.sf.saxon</groupId>
            <artifactId>saxon-all.osgi</artifactId>
            <version>${saxonVersion}</version>
        </dependency>
        
        <!-- Unit tests -->
        <dependency>
            <groupId>org.mule</groupId>
            <artifactId>mule-core</artifactId>
            <version>${version}</version>
            <scope>test</scope>
            <type>test-jar</type>
        </dependency>
        <dependency>
            <groupId>xmlunit</groupId>
            <artifactId>xmlunit</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>
