<?xml version="1.0" encoding="UTF-8"?>
<!-- =======================================================================    
        Maven Project Configuration File                                        
                                                                                
        The Geotools Project                                                    
            http://www.geotools.org/                                            
                                                                                
        Version: $Id: pom.xml 26328 2007-07-24 16:57:19Z desruisseaux $              
     ======================================================================= -->
  <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>gt2-unsupported</artifactId>
    <version>2.4-SNAPSHOT</version>
  </parent>
  

  <!-- =========================================================== -->
  <!--     Module Description                                      -->
  <!-- =========================================================== -->
  <groupId>org.geotools</groupId>
  <artifactId>gt2-epsg-h2</artifactId>
  <packaging>jar</packaging>
  <name>EPSG Authority Service using H2 database</name>
  <url>http://maven.geotools.fr/reports/modules/unsupported/epsg-h2/</url>
  
  <scm>
    <connection>
      scm:svn:http://svn.geotools.org/geotools/branches/2.4.x/modules/unsupported/epsg-h2
    </connection>
    <url>http://svn.geotools.org/geotools/branches/2.4.x/modules/unsupported/epsg-h2</url>
  </scm>
  
  <description>
    Connection to an embedded EPSG database in H2 format.
    This database is built 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>http://svn.geotools.org/geotools/branches/2.4.x/modules/unsupported/epsg-h2/LICENSE.html</url>
      <distribution>repo</distribution>
    </license>
    <license>
      <name>EPSG database distribution license</name>
      <url>http://svn.geotools.org/geotools/branches/2.4.x/licenses/EPSG.html</url>
      <distribution>repo</distribution>
      <comments>
        This Geotools module is bundled with a copy of the EPSG database. The
        data may be copied and distributed subject to the EPSG conditions.
      </comments>
    </license>
    <license>
      <name>MPL 1.1 License for H2</name>
      <url>http://svn.geotools.org/geotools/branches/2.4.x/licenses/H2.html</url>
      <distribution>repo</distribution>
      <comments>
        This Geotools module requires the H2 database engine, which is bundled
        with the binary distribution only (there is no H2 derived work in the
        Java source code).
      </comments>
    </license>
  </licenses>


  <!-- =========================================================== -->
  <!--     Developers and Contributors                             -->
  <!-- =========================================================== -->
  <developers>
    <developer>
      <name>Andrea Aime</name>
      <id>aaime</id>
      <email>aaime@users.sourceforge.net</email>
      <organization>TOPP</organization>
      <organizationUrl>http://www.openplans.org/</organizationUrl>
      <timezone>+2</timezone>
      <roles>
        <role>Module Maintainer</role>
        <role>Java Developer</role>
      </roles>
    </developer>
  </developers>


  <!-- =========================================================== -->
  <!--     Dependency Management                                   -->
  <!-- =========================================================== -->
  <dependencies>
    <dependency>
      <groupId>org.geotools</groupId>
      <artifactId>gt2-referencing</artifactId>
      <version>${project.version}</version>
    </dependency>
    <dependency>
      <groupId>org.geotools</groupId>
      <artifactId>gt2-sample-data</artifactId>
      <version>${project.version}</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.h2database</groupId>
      <artifactId>h2</artifactId>
      <version>1.0-SNAPSHOT</version>
      <!-- The version number is specified in the parent POM. -->
    </dependency>
  </dependencies>


</project>
