<?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>2.1.0-M2</version>
    </parent>
    <groupId>org.mule.tools</groupId>
    <artifactId>mule-tools</artifactId>
    <packaging>pom</packaging>
    <name>Mule Tools</name>
    <description>Tools for building and working with Mule projects.</description>

    <modules>
        <module>bobberplus</module>
        <module>mule-transport-archetype</module>
        <module>mule-project-archetype</module>
        <!-- Disable schemadocs module for now because it is causing CI to fail 
             with a meaningless error message: 
               "Error for project: Schema Docs (during install)... null... org/?apache/?commons/?logging/?LogFactory"
             See for example, http://dev.mulesource.com/bamboo/browse/MULE-MULE2JDK5-219/log
        <module>schemadocs</module>
        -->
    </modules>

    <profiles>
        <profile>
            <activation>
                <property>
                    <!--
                        This profile is activated if NO system property
                        'skipSchemadocs' is found. Disable this profile
                        by specifying -DskipSchemadocs=true on the commandline
                        -->
                    <name>!skipSchemadocs</name>
                </property>
            </activation>
            <modules>
                <module>schemadocs</module>
            </modules>
        </profile>
    </profiles>
</project>
