<?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>gt2-unsupported</artifactId>
    <version>2.4.2</version>
  </parent>


  <!-- =========================================================== -->
  <!--     Module Description                                      -->
  <!-- =========================================================== -->
  <groupId>org.geotools</groupId>
  <artifactId>gt2-postgis-versioned</artifactId>
  <packaging>jar</packaging>
  <name>Versioned PostGIS module</name>
  <url>http://maven.geotools.fr/reports/postgis/</url>

  <scm>
    <connection>
      scm:svn:http://svn.geotools.org/geotools/branches/2.4.x/modules/unsupported/postgis-versioned/
    </connection>
    <url>http://svn.geotools.org/geotools/branches/2.4.x/modules/unsupported/postgis-versioned/</url>
  </scm>

  <description>
    Used to extract and edit features from a PostGIS database along with
    feature versioning. PostGIS was developed by Refractions Research.
    It is an extension to the excellent Postgresql database, adding
    support for Geographic objects. It is open source and freely
    available.
  </description>

  <organization>
    <name>Geotools</name>
    <url>http://www.geotools.org</url>
  </organization>

  <inceptionYear>1996</inceptionYear>

  <licenses>
    <license>
      <name>Lesser General Public License (LGPL)</name>
      <url>http://www.gnu.org/copyleft/lesser.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>


  <!-- =========================================================== -->
  <!--     Developers and Contributors                             -->
  <!-- =========================================================== -->
  <developers>
    <developer>
      <name>Andrea Aime</name>
      <id>aaime</id>
      <email>aaime@users.sourceforge.net</email>
      <organization>TOPP</organization>
      <roles>
        <role>Module Maintainer</role>
      </roles>
    </developer>
  </developers>


  <!-- =========================================================== -->
  <!--     Dependency Management                                   -->
  <!-- =========================================================== -->
  <dependencies>
    <dependency>
      <groupId>org.geotools</groupId>
      <artifactId>gt2-postgis</artifactId>
      <version>${project.version}</version>
    </dependency>
    <!-- Depend on the test code as well -->
    <dependency>
      <groupId>org.geotools</groupId>
      <artifactId>gt2-postgis</artifactId>
      <version>${project.version}</version>
      <classifier>tests</classifier>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.geotools</groupId>
      <artifactId>gt2-epsg-wkt</artifactId>
      <version>${project.version}</version>
      <scope>test</scope>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <configuration>
          <excludes>
            <!-- The following tests are skipped because they do not extend OnlineTestCase -->
            <exclude>**/SupportTableOnlineTest.java</exclude>
            <exclude>**/TransparentUnversionedOnlineTest.java</exclude>
            <exclude>**/TransparentVersionedOnlineTest.java</exclude>
            <exclude>**/VersiondPostgisDataStoreFactoryOnlineTest.java</exclude>
            <exclude>**/VersionedOperationsOnlineTest.java</exclude>
            <exclude>**/VersionedDataStoreStressTest.java</exclude>
          </excludes>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>

