<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">
    <modelVersion>4.0.0</modelVersion>

    <parent>
        <groupId>org.switchyard.components</groupId>
        <artifactId>switchyard-components-parent</artifactId>
        <version>0.6.0-SNAPSHOT</version>
        <relativePath>../pom.xml</relativePath>
    </parent>

    <artifactId>switchyard-component-remote</artifactId>
    <packaging>jar</packaging>
    <name>SwitchYard: Remote Component</name>
    <url>http://switchyard.org</url>

    <dependencies>
		<dependency>
	        <groupId>org.switchyard</groupId>
	        <artifactId>switchyard-config</artifactId>
        </dependency>
        <dependency>
	        <groupId>org.switchyard</groupId>
	        <artifactId>switchyard-remote</artifactId>
        </dependency>
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>servlet-api</artifactId>
        </dependency>
        <dependency>
            <groupId>org.switchyard</groupId>
            <artifactId>switchyard-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>
