<?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">
  <parent>
    <artifactId>gt2-plugin</artifactId>
    <groupId>org.geotools</groupId>
    <version>2.2.3-SNAPSHOT</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <groupId>org.geotools</groupId>
  <artifactId>gt2-postgis</artifactId>
  <name>PostGIS module</name>
  <version>2.2.3-SNAPSHOT</version>
  <description>Used to extract and edit features from a PostGIS database.  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>
  <url>http://maven.geotools.fr/reports/postgis</url>
  <developers>
    <developer>
      <id>robhranac</id>
      <name>Rob Hranac</name>
      <email>robhranac@users.sourceforge.net</email>
      <organization>VFNY</organization>
      <roles>
        <role>Module Maintainer</role>
        <role>Java Developer</role>
      </roles>
    </developer>
    <developer>
      <id>cholmesny</id>
      <name>Chris Holmes</name>
      <email>cholmesny@users.sourceforge.net</email>
      <organization>TOPP</organization>
      <roles>
        <role>Module Maintainer</role>
        <role>Java Developer</role>
      </roles>
    </developer>
    <developer>
      <id>jdeolive</id>
      <name>Justin Deoliveira</name>
      <email>jdeolive@users.sourceforge.net</email>
      <organization>TOPP</organization>
      <roles>
        <role>Module Maintainer</role>
        <role>Java Developer</role>
      </roles>
    </developer>
  </developers>
  <scm>
    <connection>scm:svn:http://svn.geotools.org/geotools/branches/2.2.x/plugin/postgis</connection>
    <url>http://svn.geotools.org/geotools/branches/2.2.x/plugin/postgis</url>
    <developerConnection>scm:svn:http://svn.geotools.org/geotools/branches/2.2.x/gt2-plugin/gt2-postgis</developerConnection>
  </scm>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-surefire-plugin</artifactId>
        <configuration>
          <excludes>
            <exclude>**/PostgisLockingTest.java</exclude>
            <exclude>**/PostgisTestSuite.java</exclude>
            <exclude>**/PostgisDataStoreAPITest.java</exclude>
            <exclude>**/PostgisDataStoreTest.java</exclude>
          </excludes>
          <skip>${allow.test.skip}</skip>
          <includes>
            <include>**/*Test.java</include>
          </includes>
          <forkMode>once</forkMode>
          <argLine>-Xmx512M -enableassertions</argLine>
          <printSummary>false</printSummary>
          <testFailureIgnore>${allow.test.failure.ignore}</testFailureIgnore>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <dependencies>
    <dependency>
      <groupId>log4j</groupId>
      <artifactId>log4j</artifactId>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>org.geotools</groupId>
      <artifactId>gt2-main</artifactId>
      <version>2.2.3-SNAPSHOT</version>
    </dependency>
    <dependency>
      <groupId>org.postgis</groupId>
      <artifactId>postgis-driver</artifactId>
    </dependency>
    <dependency>
      <groupId>postgresql</groupId>
      <artifactId>postgresql</artifactId>
    </dependency>
    <dependency>
      <groupId>org.wkb4j</groupId>
      <artifactId>wkb4j</artifactId>
    </dependency>
    <dependency>
      <groupId>org.geotools</groupId>
      <artifactId>gt2-epsg-wkt</artifactId>
      <version>2.2.3-SNAPSHOT</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>
