<?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/xsd/maven-4.0.0.xsd">
    <artifactId>mule-maven-plugin-integration-tests</artifactId>
    <name>Integration tests</name>

    <parent>
        <groupId>org.mule.tools.maven</groupId>
        <artifactId>mule-maven-plugins</artifactId>
        <version>3.0.0-M2</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <properties>
        <maven.verifier.plugin.version>1.1</maven.verifier.plugin.version>
        <hamcrest.all.version>1.3</hamcrest.all.version>
        <maven.plugin.testing.harness.version>1.2</maven.plugin.testing.harness.version>
        <plexus.container.default.version>1.0-beta-3.0.5</plexus.container.default.version>
        <plexus.component.annotations.version>1.0-beta-3.0.5</plexus.component.annotations.version>
        <license.path>../LICENSE_HEADER</license.path>
        <formatter.path>../formatter.xml</formatter.path>
    </properties>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-resources-plugin</artifactId>
                <configuration>
                    <includeEmptyDirs>true</includeEmptyDirs>
                </configuration>
            </plugin>
        </plugins>
    </build>

    <dependencies>
        <dependency>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-verifier-plugin</artifactId>
            <version>${maven.verifier.plugin.version}</version>
            <type>maven-plugin</type>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.maven.plugin-testing</groupId>
            <artifactId>maven-plugin-testing-harness</artifactId>
            <version>${maven.plugin.testing.harness.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.hamcrest</groupId>
            <artifactId>hamcrest-all</artifactId>
            <version>${hamcrest.all.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.maven.shared</groupId>
            <artifactId>maven-verifier</artifactId>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
        </dependency>
        <!-- The Plexus annotations -->
        <dependency>
            <groupId>org.codehaus.plexus</groupId>
            <artifactId>plexus-component-annotations</artifactId>
            <version>${plexus.component.annotations.version}</version>
        </dependency>

        <!-- The plexus container -->
        <dependency>
            <groupId>org.codehaus.plexus</groupId>
            <artifactId>plexus-container-default</artifactId>
            <version>${plexus.container.default.version}</version>
        </dependency>
    </dependencies>

</project>