<?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>
    <groupId>org.mule</groupId>
    <artifactId>mule-bar</artifactId>
    <packaging>jar</packaging>
    <name>bar</name>
    <version>1.0-SNAPSHOT</version>

    <dependencies>
        <!-- this should import the required repositories -->
        <dependency>
            <groupId>org.mule</groupId>
            <artifactId>mule-foo</artifactId>
            <version>1.0-SNAPSHOT</version>
        </dependency>
    </dependencies>
    
    <repositories>
        		<repository>
        			<id>example-repo</id>
        			<name>Example Repo</name>
        			<url>
        				file://c:/test/repo
        			</url>
    		</repository>
    </repositories>
    
    <distributionManagement>
            		<repository>
            			<id>example2-repo</id>
            			<name>Example Repo</name>
            			<url>
            				file://c:/test/repo2
            			</url>
        		</repository>
    </distributionManagement>
    
</project>

