Maven Repository - POM file for JDBC postgis-jdbc 1.3.3 1.3.3

Summary

Postgis JDBC Driver.

PostGIS adds support for geographic objects to the PostgreSQL object-relational database..

Declaration

Here is the list of declaration for postgis-jdbc. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>org.postgis</groupId>
   <artifactId>postgis-jdbc</artifactId>
   <version>1.3.3</version>
</dependency>

If you think this Maven repository POM file listing for postgis-jdbc is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

License

Name:GNU Lesser General Public License
URL: http://www.gnu.org/licenses/lgpl-2.1.txt.





Plugin

The following plugins are used in the postgis-jdbc-1.3.3.jar

  1. maven-javadoc-plugin
  2. maven-source-plugin

Packages

The following packages are defined in the postgis-jdbc-1.3.3.jar

examples
org.postgis
org.postgis.binary
org.postgis.java2d

POM File Source

Here is the content of the POM file.

<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.postgis</groupId>
    <artifactId>postgis-main</artifactId>
    <version>1.3.3</version>
  </parent>

  <groupId>org.postgis</groupId>
  <artifactId>postgis-jdbc</artifactId>
  <version>1.3.3</version>
  <packaging>jar</packaging>

  <name>Postgis JDBC Driver</name>
  <url>http://www.postgis.org</url>
  <description>PostGIS adds support for geographic objects to the PostgreSQL object-relational database.</description>

  <licenses>
    <license>
      <name>GNU Lesser General Public License</name>
      <url>http://www.gnu.org/licenses/lgpl-2.1.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>

  <scm>
    <url>http://trac.osgeo.org/postgis/browser/tags/1.3.3</url>
    <connection>scm:svn:http://svn.osgeo.org/postgis/tags/1.3.3/</connection>
    <developerConnection>scm:svn:http://svn.osgeo.org/postgis/tags/1.3.3/</developerConnection>
  </scm>

  <build>

    <sourceDirectory>src</sourceDirectory>
    
    <!-- TODO create version.properties file -->

    <!-- For the driverconfig property file -->
    <resources>
      <resource>
        <directory>src</directory>
        <filtering>false</filtering>
        <includes>
          <include>**/*.properties</include>
        </includes>
        <excludes>
          <exclude>**/*.java</exclude>
        </excludes>
      </resource>
    </resources>

    <plugins>

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-source-plugin</artifactId>
        <executions>
          <execution>
            <id>attach-sources</id>
            <phase>verify</phase>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-javadoc-plugin</artifactId>
        <executions>
          <execution>
            <id>attach-javadocs</id>
            <phase>verify</phase>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>

    </plugins>

  </build>

  <dependencies>

    <dependency>
      <groupId>org.postgis</groupId>
      <artifactId>postgis-stubs</artifactId>
      <version>1.3.3</version>
      <scope>compile</scope>
    </dependency>

  </dependencies>

</project>