Download postgis-jdbc-2.2.1.jar file

Introduction

You can download postgis-jdbc-2.2.1.jar in this page.

License

Open Source

Type List

postgis-jdbc-2.2.1.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/net.postgis/postgis-jdbc/pom.properties
META-INF/maven/net.postgis/postgis-jdbc/pom.xml
examples.TestAutoregister.class
org.postgis.ComposedGeom.class
org.postgis.DriverWrapper.class
org.postgis.DriverWrapperAutoprobe.class
org.postgis.DriverWrapperLW.class
org.postgis.Geometry.class
org.postgis.GeometryCollection.class
org.postgis.GeometryTokenizer.class
org.postgis.LineString.class
org.postgis.LinearRing.class
org.postgis.MultiLineString.class
org.postgis.MultiPoint.class
org.postgis.MultiPolygon.class
org.postgis.PGbox2d.class
org.postgis.PGbox3d.class
org.postgis.PGboxbase.class
org.postgis.PGgeometry.class
org.postgis.PGgeometryLW.class
org.postgis.Point.class
org.postgis.PointComposedGeom.class
org.postgis.Polygon.class
org.postgis.Version.class
org.postgis.binary.BinaryParser.class
org.postgis.binary.BinaryWriter.class
org.postgis.binary.ByteGetter.class
org.postgis.binary.ByteSetter.class
org.postgis.binary.ValueGetter.class
org.postgis.binary.ValueSetter.class
org/postgis/version.properties
org/postgresql/driverconfig.properties

Pom

postgis-jdbc-2.2.1.pom file content.

<?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/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
	
    <parent>
        <groupId>net.postgis</groupId>
        <artifactId>postgis-java-aggregator</artifactId>
        <version>2.2.1</version>
    </parent>

    <artifactId>postgis-jdbc</artifactId>
    <version>2.2.1</version>
    <packaging>jar</packaging>

    <name>Postgis JDBC Driver</name>
    <description>PostGIS adds support for geographic objects to the PostgreSQL object-relational database.</description>

    <properties>
        <testWithDatabase>false</testWithDatabase>
        <jdbcDriverClassName>org.postgresql.Driver</jdbcDriverClassName>
        <jdbcUrl>jdbc:postgresql://localhost:5432/postgis1</jdbcUrl>
        <jdbcUsername>postgis1</jdbcUsername>
        <jdbcPassword>postgis1</jdbcPassword>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.postgresql</groupId>
            <artifactId>postgresql</artifactId>
            <version>[9.4.1208.jre7,)</version>
        </dependency>
    </dependencies>

    <build>
        <resources>
            <resource>
                <directory>src/main/resources</directory>
                <filtering>true</filtering>
            </resource>
        </resources>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <configuration>
                    <suiteXmlFiles>
                        <suiteXmlFile>src/test/resources/testng.xml</suiteXmlFile>
                    </suiteXmlFiles>
                    <systemPropertyVariables>
                        <testWithDatabase>${testWithDatabase}</testWithDatabase>
                        <jdbcDriverClassName>${jdbcDriverClassName}</jdbcDriverClassName>
                        <jdbcUrl>${jdbcUrl}</jdbcUrl>
                        <jdbcUsername>${jdbcUsername}</jdbcUsername>
                        <jdbcPassword>${jdbcPassword}</jdbcPassword>
                    </systemPropertyVariables>
                </configuration>
            </plugin>
        </plugins>
    </build>

</project>

POM Entry

<dependency>
   <groupId>net.postgis</groupId>
   <artifactId>postgis-jdbc</artifactId>
   <version>2.2.1</version>
</dependency>

Download

If you think the following postgis-jdbc-2.2.1.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download postgis-jdbc-2.2.1.jar file




PreviousNext

Related