<?xml version="1.0" encoding="UTF-8"?>
<!-- =======================================================================    
        Maven Project Configuration File                                        
                                                                                
        The Geotools Project                                                    
            http://www.geotools.org/                                            
                                                                                
        Version: $Id$              
     ======================================================================= -->
<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>org.geotools</groupId>
    <artifactId>plugin</artifactId>
    <version>26.0</version>
  </parent>

  <!-- =========================================================== -->
  <!--     Module Description                                      -->
  <!-- =========================================================== -->
  <groupId>org.geotools</groupId>
  <artifactId>gt-epsg-postgresql</artifactId>
  <packaging>jar</packaging>
  <name>EPSG Authority Service using PostgreSQL database</name>

  <description>Connection to an EPSG postgreSQL database.
    This database should be built by the user from the SQL scripts delivered by EPSG.</description>

  <licenses>
    <license>
      <name>Lesser General Public License (LGPL)</name>
      <!--url>http://www.gnu.org/copyleft/lesser.txt</url-->
      <url>https://github.com/geotools/geotools/blob/master/modules/plugin/epsg-postgresql/LICENSE.txt</url>
      <distribution>repo</distribution>
    </license>
    <license>
      <name>BSD License for PostgreSQL JDBC driver</name>
      <url>https://github.com/geotools/geotools/blob/master/licenses/PostgreSQL.html</url>
      <distribution>repo</distribution>
      <comments>This Geotools module requires the PostgreSQL JDBC driver, which is
        bundled with the binary distribution only (there is no PostgreSQL 
        derived work in the Java source code).</comments>
    </license>
  </licenses>

  <!-- =========================================================== -->
  <!--     Developers and Contributors                             -->
  <!-- =========================================================== -->
  <developers>
    <developer>
      <id>aaime</id>
      <name>Andrea Aime</name>
      <email>aaime@users.sourceforge.net</email>
      <roles>
        <role>Java Developer</role>
        <role>Module Maintainer</role>
      </roles>
    </developer>
    <developer>
      <name>Didier Richard</name>
      <email>dgr@libertysurf.fr</email>
      <organization>Institut Géographique National - France</organization>
      <roles>
        <role>Java Developer</role>
      </roles>
    </developer>
    <developer>
      <id>desruisseaux</id>
      <name>Martin Desruisseaux</name>
      <email>desruisseaux@users.sourceforge.net</email>
      <organization>Geomatys</organization>
      <organizationUrl>http://www.geomatys.fr/</organizationUrl>
      <roles>
        <role>Retired Module Maintainer</role>
        <role>Retired Java Developer</role>
      </roles>
      <timezone>+1</timezone>
    </developer>
  </developers>

  <!-- =========================================================== -->
  <!--     Dependency Management                                   -->
  <!-- =========================================================== -->
  <dependencies>
    <dependency>
      <groupId>org.geotools</groupId>
      <artifactId>gt-referencing</artifactId>
      <version>${project.version}</version>
    </dependency>
    <dependency>
      <groupId>org.postgresql</groupId>
      <artifactId>postgresql</artifactId>
      <!-- The version number is specified in the parent POM. -->
    </dependency>
  </dependencies>

</project>
