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

        The Geotoolkit.org Project
            http://www.geotoolkit.org/
     ======================================================================= -->
<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.geotoolkit</groupId>
    <artifactId>referencing</artifactId>
    <version>3.20-geoapi-3.0</version>
  </parent>


  <!-- ===========================================================
           Module Description
       =========================================================== -->
  <groupId>org.geotoolkit</groupId>
  <artifactId>geotk-referencing</artifactId>
  <packaging>jar</packaging>
  <name>Referencing core</name>

  <description>
    Implementations of Coordinate Reference Systems (CRS),
    conversion and transformation services derived from ISO 19111.
  </description>


  <!-- ===========================================================
           Developers and Contributors
       =========================================================== -->
  <developers>
    <developer>
      <name>Martin Desruisseaux</name>
      <id>desruisseaux</id>
      <email>martin.desruisseaux@geomatys.fr</email>
      <organization>Geomatys</organization>
      <organizationUrl>http://www.geomatys.com/</organizationUrl>
      <timezone>+1</timezone>
      <roles>
        <role>Module Maintainer</role>
        <role>Java Developer</role>
      </roles>
    </developer>
  </developers>

  <contributors>
    <contributor>
      <name>Rueben Schulz</name>
      <organization>University of British Columbia</organization>
      <roles>
        <role>Java developer</role>
        <role>Tester</role>
      </roles>
    </contributor>
    <contributor>
      <name>Jan Jezek</name>
      <organization>Help Service Remote Sensing</organization>
      <roles>
        <role>Java Developer</role>
      </roles>
    </contributor>
    <contributor>
      <name>Jody Garnett</name>
      <email>jive@users.sourceforge.net</email>
      <organization>Refractions Research</organization>
      <roles>
        <role>Java Developer</role>
      </roles>
    </contributor>
    <contributor>
      <name>Rémi Eve</name>
      <organization>
        Institut de Recherche pour le Développement (IRD)
      </organization>
      <roles>
        <role>Java developer</role>
      </roles>
    </contributor>
    <contributor>
      <name>Yann Cézard</name>
      <organization>Université de Montpellier II</organization>
      <roles>
        <role>Java developer</role>
      </roles>
    </contributor>
    <contributor>
      <name>Simone Giannecchinir</name>
      <email>simone.giannecchini@geo-solutions.it</email>
      <organization>GeoSolutions S.A.S.</organization>
      <roles>
        <role>Java developer</role>
      </roles>
    </contributor>
    <contributor>
      <name>Daniele Franzoni</name>
      <organization>SATA srl, Italy</organization>
      <roles>
        <role>Java developer</role>
      </roles>
    </contributor>
    <contributor>
      <name>Matthias Basler</name>
      <email>matthiasbasier@users.sourceforge.net</email>
      <roles>
        <role>Java developer</role>
      </roles>
    </contributor>
    <contributor>
      <name>David Heath</name>
      <roles>
        <role>Java developer</role>
      </roles>
    </contributor>
    <contributor>
      <name>Beate Stollberg</name>
      <roles>
        <role>Java developer</role>
      </roles>
      <organization>
        Institute for Environment and Sustainability
      </organization>
    </contributor>
    <contributor>
      <name>Tara Athan</name>
      <roles>
        <role>Java developer</role>
      </roles>
    </contributor>
    <contributor>
      <name>Larry Reeder</name>
      <roles>
        <role>Tester</role>
      </roles>
    </contributor>
    <contributor>
      <name>Simon Reynard</name>
      <organization>Geomatys</organization>
      <organizationUrl>http://www.geomatys.com/</organizationUrl>
      <timezone>+1</timezone>
      <roles>
        <role>Java Developer</role>
      </roles>
    </contributor>
    <contributor>
      <name>Rémi Maréchal</name>
      <email>r.marechal79@laposte.net</email>
      <organization>Geomatys</organization>
      <organizationUrl>http://www.geomatys.com/</organizationUrl>
      <timezone>+1</timezone>
      <roles>
        <role>Java Developer</role>
      </roles>
    </contributor>
  </contributors>


  <!-- ===========================================================
           Dependency Management
       =========================================================== -->
  <dependencies>
    <dependency>
      <groupId>org.apache.derby</groupId>
      <artifactId>derby</artifactId>
      <scope>test</scope>
    </dependency>

    <!-- Following is useful only for those who customize
         their EPSG database connection parameters. -->
    <dependency>
      <groupId>postgresql</groupId>
      <artifactId>postgresql</artifactId>
      <scope>test</scope>
    </dependency>
  </dependencies>


  <!-- ====================================================
           Add test-specific information. This is used only
           if a user wants to run geoapi-conformance on the
           geotk-referencing.jar file directly.
       ==================================================== -->
  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-antrun-plugin</artifactId>
        <executions>
          <execution>
            <phase>prepare-package</phase>
            <goals><goal>run</goal></goals>
            <configuration>
              <target>
                <copy todir="${project.build.directory}/classes">
                  <fileset dir="${project.build.directory}/test-classes">
                    <include name="org/geotoolkit/GeoapiTest.class"/>
                    <include name="META-INF/services/org.opengis.test.ImplementationDetails"/>
                    <include name="META-INF/services/org.opengis.test.FactoryFilter"/>
                  </fileset>
                </copy>
              </target>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
</project>
