<?xml version="1.0" encoding="UTF-8"?>
<!--
     =======================================================================
        Maven Project Configuration File

        GeoSolutions GeoBach Project
            http://www.geo-solutions.it/trac/IngestionEngine

        Version: $Id: pom.xml 63 2008-04-04 11:22:11Z alessio $
     =======================================================================
-->
<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.1-SNAPSHOT</version>
    </parent>


    <!-- =========================================================== -->
    <!--     Module Description                                      -->
    <!-- =========================================================== -->
    <groupId>it.geosolutions.geobatch</groupId>
    <artifactId>gb-action-geoserver</artifactId>
    <packaging>jar</packaging>

    <name>GeoBatch action: GeoServer config</name>
    <description>GeoSolutions GeoBatch basemodule for actions that configure data in GeoServer</description>

    <url>https://svn.codehaus.org/geobatch/trunk/flowmanagers/gb-geoserver</url>

    <scm>
        <connection>
            scm:svn:https://svn.codehaus.org/geobatch/trunk/flowmanagers/gb-geoserver
        </connection>
        <url>https://svn.codehaus.org/geobatch/trunk/flowmanagers/gb-geoserver</url>
    </scm>


    <licenses>
        <license>
            <name>Lesser General Public License (GPL)</name>
            <url>http://www.gnu.org/copyleft/lesser.txt</url>
            <distribution>repo</distribution>
        </license>
    </licenses>

    <!-- =========================================================== -->
    <!--     Dependencies						                     -->
    <!-- =========================================================== -->
    <dependencies>
	<!-- Reload (to deserialize geoserverList -->
	<dependency>
	    <groupId>com.thoughtworks.xstream</groupId>
	    <artifactId>xstream</artifactId>
	</dependency>

        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <scope>test</scope>
        </dependency>
	<dependency>
	    <groupId>org.slf4j</groupId>
	    <artifactId>slf4j-log4j12</artifactId>
	    <scope>test</scope>
	</dependency>


        <!-- JSON lib -->

        <dependency>
            <groupId>net.sf.json-lib</groupId>
            <artifactId>json-lib</artifactId>
            <!--<version>2.1</version>-->
            <classifier>jdk15</classifier>
        </dependency>

        <dependency>
            <groupId>org.codehaus.jettison</groupId>
            <artifactId>jettison</artifactId>
        </dependency>

        <!-- GEOBATCH lib -->
        <dependency>
            <groupId>it.geosolutions.geobatch</groupId>
            <artifactId>gb-core-impl</artifactId>
        </dependency>

        <dependency>
            <groupId>it.geosolutions.geobatch</groupId>
            <artifactId>gb-fs-catalog</artifactId>
        </dependency>
        
        <dependency>
	    <groupId>it.geosolutions</groupId>
	    <artifactId>geoserver-manager</artifactId>
	</dependency>
    </dependencies>
</project>
