<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>it.geosolutions.geobatch</groupId>
        <artifactId>gb-action-geoserver-parent</artifactId>
        <version>1.0</version>
    </parent>

    <groupId>it.geosolutions.geobatch</groupId>
    <artifactId>gb-action-gsrest</artifactId>
    <packaging>jar</packaging>

    <name>GeoBatch action: GeoServer 2 REST Action</name>

    <url>http://maven.apache.org</url>

    <dependencies>

        <dependency>
            <groupId>commons-io</groupId>
            <artifactId>commons-io</artifactId>
        </dependency>
        
        <dependency>
            <groupId>commons-httpclient</groupId>
            <artifactId>commons-httpclient</artifactId>
        </dependency>

        <dependency>
            <groupId>org.jdom</groupId>
            <artifactId>jdom</artifactId>
        </dependency>

        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <scope>test</scope>
        </dependency>
        
        <dependency>
        	<groupId>it.geosolutions.geobatch</groupId>
    		<artifactId>gb-action-geoserver</artifactId>
        </dependency>

		<!--  dependencies on core classes for the events -->
        <dependency>
        	<groupId>it.geosolutions.geobatch</groupId>
    		<artifactId>gb-fsm-core</artifactId>
        </dependency>        

		<!--  geoserver rest client lib -->
        <dependency>
        	<groupId>it.geosolutions</groupId>
    		<artifactId>geoserver-manager</artifactId>
        </dependency>
        
        <!-- ============================== -->
        <!--            tools               -->
        <!-- ============================== -->
        <dependency>
		<groupId>it.geosolutions.geobatch</groupId>
		<artifactId>gb-tools</artifactId>
	</dependency>

    </dependencies>
</project>

