<?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.examples</groupId>
        <artifactId>mule-examples</artifactId>
        <version>3.5.0</version>
    </parent>

    <artifactId>mule-example-loanbroker-parent</artifactId>
    <packaging>pom</packaging>
    <name>Loan Broker Example</name>
    <description>Umbrella for different variations of the Loan Broker example.</description>

    <properties>
        <licensePath>../../LICENSE_HEADER.txt</licensePath>
    </properties>

    <modules>
        <module>common</module>
        <module>common-tests</module>
        <module>credit-agency</module>
        <!--<module>esb</module>-->
        <module>esn</module>
    </modules>

    <build>
        <!-- Allow config files to be in the "conf" directory to make it easier for users to find them. -->
        <resources>
            <resource>
                <directory>conf</directory>
            </resource>
            <resource>
                <directory>src/main/resources</directory>
            </resource>
        </resources>
    </build>
</project>
