<?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</groupId>
        <artifactId>mule</artifactId>
        <version>3.4.0</version>
    </parent>
    <groupId>org.mule.tests</groupId>
    <artifactId>mule-tests</artifactId>
    <packaging>pom</packaging>
    <name>Mule Tests</name>

    <modules>
        <module>functional</module>
        <module>integration</module>
        <module>integration-axis</module>
    </modules>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-site-plugin</artifactId>
                <configuration>
                    <skip>true</skip>
                    <skipDeploy>true</skipDeploy>
                </configuration>
            </plugin>
        </plugins>
    </build>

    <profiles>
        <profile>
            <id>archetype-tests</id>
            <activation>
                <property>
                    <!--
                         This profile is activated if NO system property
                         'skipArchetypeTests' is found. Disable this profile
                         by specifying -DskipArchetypeTests=true on the commandline
                    -->
                    <name>!skipArchetypeTests</name>
                </property>
            </activation>
            <modules>
                <module>archetypes</module>
            </modules>
        </profile>
        <profile>
            <id>beyond-jdk6</id>
            <activation>
                <!--
                    Minimum JDK version for the build is JDK5. Everything with
                    a higher version number enables this profile.
                -->
                <jdk>!1.5</jdk>
            </activation>
            <modules>
                <module>integration-jdk6</module>
            </modules>
        </profile>
    </profiles>
</project>
