<?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>
    <artifactId>org.gvsig.projection.app.jcrs.common</artifactId>
    <packaging>jar</packaging>
    <name>${project.artifactId}</name>
    <description>
        CRS management:
        - Set the reference system (CRS) by default, in views, in layers (CRS on the fly).
        - Selection from recent CRS, from EPSG, ESRI, IAU2000 data bases and user's defined CRS.
        - Create, edit and delete new CRS defined by the user (from an existing CRS, from a wkt string, or from scratch).
        - Consult CRS information (datum, projection, proj4 string...)
        - Convertion of coordinates (no datum changing)
        - Transformation of coordinates (datum changing) from EPSG, manual, recent, compound and grid (.gsb extension)
    </description>

    <parent>
        <groupId>org.gvsig</groupId>
        <artifactId>org.gvsig.projection.app.jcrs</artifactId>
        <version>2.1.96</version>
    </parent>

    <properties>
        <gvsig.package.info.name>CRS: CRS management (Proj4/Geotools based, Native)</gvsig.package.info.name>
        <gvsig.package.info.state>testing</gvsig.package.info.state>
        <gvsig.package.info.official>true</gvsig.package.info.official>
        <gvsig.package.info.operatingSystem>all</gvsig.package.info.operatingSystem>
        <gvsig.package.info.architecture>all</gvsig.package.info.architecture>
        <gvsig.package.info.dependencies>required: org.gvsig.app.mainplugin -ge 2.1.0-A</gvsig.package.info.dependencies>
        <gvsig.package.info.categories />
        <gvsig.package.info.poolURL>http://devel.gvsig.org/download/projects/gvsig-jcrs/pool</gvsig.package.info.poolURL>
        <gvsig.install.plugin>false</gvsig.install.plugin>
        <gvsig.install.plugin.package>false</gvsig.install.plugin.package>
    </properties>

    <dependencies>

        <dependency>
            <groupId>org.gvsig</groupId>
            <artifactId>org.gvsig.tools.lib</artifactId>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>org.gvsig</groupId>
            <artifactId>org.gvsig.andami</artifactId>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>org.gvsig</groupId>
            <artifactId>org.gvsig.ui</artifactId>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>net.sf</groupId>
            <artifactId>jgridshiftapi</artifactId>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>org.gvsig</groupId>
            <artifactId>org.gvsig.projection.cresques.ui</artifactId>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>org.gvsig</groupId>
            <artifactId>org.gvsig.projection.api</artifactId>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>org.gvsig</groupId>
            <artifactId>org.gvsig.projection.jcrs.lib</artifactId>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>javax.units</groupId>
            <artifactId>jsr108</artifactId>
            <scope>compile</scope>
        </dependency>


        <dependency>
            <groupId>org.geotools</groupId>
            <artifactId>gt2-main</artifactId>
            <!-- Don't remove version from here, this override version  -->
            <!-- in org.gvsig.desktop -->
            <version>unknown</version>
            <scope>compile</scope>
        </dependency>

        <dependency>
            <groupId>org.opengis</groupId>
            <artifactId>geoapi</artifactId>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>hsqldb</groupId>
            <artifactId>hsqldb</artifactId>
            <scope>compile</scope>
        </dependency>

        <!--  Runtime dependencies -->
        <!--  Need to include in the assembly -->
        <dependency>
            <groupId>org.gvsig</groupId>
            <artifactId>org.gvsig.projection.cresques.impl</artifactId>
            <scope>runtime</scope>
        </dependency>
        <!--
        <dependency>
          <groupId>org.gvsig</groupId>
          <artifactId>gt2-epsg-esri</artifactId>
          <scope>runtime</scope>
        </dependency>
        <dependency>
          <groupId>org.gvsig</groupId>
          <artifactId>gt2-epsg-hsql</artifactId>
          <scope>runtime</scope>
        </dependency>
        <dependency>
          <groupId>org.gvsig</groupId>
          <artifactId>gt2-epsg-iau2000</artifactId>
          <scope>runtime</scope>
        </dependency>
        <dependency>
          <groupId>org.gvsig</groupId>
          <artifactId>gt2-epsg-usr</artifactId>
          <scope>runtime</scope>
        </dependency>
        -->
        <dependency>
            <groupId>java3d</groupId>
            <artifactId>vecmath</artifactId>
            <scope>runtime</scope>
        </dependency>

<!--         <dependency> -->
<!--            <groupId>org.gdal</groupId> -->
<!--            <artifactId>gdal</artifactId> -->
<!--         </dependency> -->

    </dependencies>

    <build>
        <plugins>
            <!-- TODO: MAKE TESTS WORK AND REMOVE THIS OPTION -->
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <configuration>
                    <skipTests>true</skipTests>
                </configuration>
            </plugin>
        </plugins>
    </build>

</project>

