<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>fr.ifremer.oceanotron</groupId>
        <artifactId>oceanotron</artifactId>
        <version>2.1-SNAPSHOT</version>
    </parent>
    <artifactId>oceanotron-sos</artifactId>
    <name>Oceanotron SOS Frontdesk</name>
    <dependencies>
        <dependency>
            <groupId>fr.ifremer.oceanotron</groupId>
            <artifactId>oceanotron-core</artifactId>
            <version>2.1-SNAPSHOT</version>
        </dependency>
        <dependency>
            <groupId>org.geotoolkit</groupId>
            <artifactId>geotk-epsg</artifactId>
            <version>3.21</version>
        </dependency>
        <dependency>
            <groupId>org.geotoolkit</groupId>
            <artifactId>geotk-referencing</artifactId>
            <version>3.21</version>
        </dependency>
        <dependency>
            <groupId>commons-httpclient</groupId>
            <artifactId>commons-httpclient</artifactId>
            <version>3.1</version>
        </dependency>
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>servlet-api</artifactId>
            <version>2.4</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>jstl</artifactId>
            <version>1.2</version>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>javax.transaction</groupId>
            <artifactId>jta</artifactId>
            <version>1.1</version>
        </dependency>
        <dependency>
            <groupId>commons-logging</groupId>
            <artifactId>commons-logging</artifactId>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>log4j</groupId>
            <artifactId>log4j</artifactId>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>org.bushe</groupId>
            <artifactId>eventbus</artifactId>
        </dependency>
        <dependency>
            <groupId>org.jasig.cas.client</groupId>
            <artifactId>cas-client-core</artifactId>
            <version>3.1.12</version>
        </dependency>
        <dependency>
            <groupId>org.testng</groupId>
            <artifactId>testng</artifactId>
        </dependency>
        <dependency>
            <groupId>org.constellation.web-services</groupId>
            <artifactId>cstl-web-sos-base</artifactId>
            <version>0.9.1-OCEA-2.0-SNAPSHOT</version>
        </dependency>
        <dependency>
            <groupId>org.codehaus.jettison</groupId>
            <artifactId>jettison</artifactId>
            <version>1.3.5</version>
        </dependency>
        <dependency>
            <groupId>edu.ucar</groupId>
            <artifactId>netcdf</artifactId>
            <version>4.3.20</version>
        </dependency>
    </dependencies>
  
    <repositories>
        <repository>
            <id>unidata</id>
            <name>unidata</name>
            <url>http://artifacts.unidata.ucar.edu/content/repositories/unidata-releases/</url>
            <snapshots>
                <enabled>true</enabled>
            </snapshots>
        </repository>
        <repository>
            <id>Geotoolkit</id>
            <name>Maven Geotoolkit Snapshots and Releases</name>
            <url>http://maven.geotoolkit.org/</url>
        </repository>
        <repository>
            <id>Geomatys</id>
            <name>Maven Geomatys Snapshots and Releases</name>
            <url>http://maven.geomatys.com/</url>
        </repository>
        <repository>
            <id>ifremer-public-releases</id>
            <name>ifremer-public-releases</name>
            <url>http://www.ifremer.fr/maven/repository</url>
        </repository>
        <repository>
            <id>ifremer-public-snapshots</id>
            <name>ifremer-public-snapshots</name>
            <url>http://www.ifremer.fr/maven/snapshots/</url>
        </repository>



    </repositories>
  
    <packaging>jar</packaging>
    <distributionManagement>
        <repository>
            <id>ifremer-public-releases</id>
            <name>ifremer-public-releases</name>
            <url>http://visi1-common-hudson.ifremer.fr:8080/nexus/content/repositories/ifremer-public-releases/</url>
        </repository>
        <snapshotRepository>
            <id>ifremer-public-snapshots</id>
            <name>ifremer-public-snapshots</name>
            <url>http://visi1-common-hudson.ifremer.fr:8080/nexus/content/repositories/ifremer-public-snapshots/</url>
        </snapshotRepository>
    </distributionManagement>

</project>