From f23c58311d2a73e5499755b8b2ae7f04248dbb26 Mon Sep 17 00:00:00 2001 From: Baris Ergun Date: Mon, 3 Mar 2014 21:15:10 +0000 Subject: [PATCH] #2626 removing properties from version tag also removing explicit plugin declarations and adding an overview.html for javadoc git-svn-id: http://svn.osgeo.org/postgis/trunk@12291 b70326c6-7e19-0410-871a-916f4a2858ee --- java/jdbc/pom.xml | 282 ++++++++++-------------- java/jdbc/src/org/postgis/overview.html | 15 ++ 2 files changed, 128 insertions(+), 169 deletions(-) create mode 100644 java/jdbc/src/org/postgis/overview.html diff --git a/java/jdbc/pom.xml b/java/jdbc/pom.xml index 4507d8c9f..0b2e87156 100644 --- a/java/jdbc/pom.xml +++ b/java/jdbc/pom.xml @@ -1,182 +1,126 @@ + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> - 4.0.0 - - org.postgis - postgis-jdbc - ${POSTGIS_MAJOR_VERSION}.${POSTGIS_MINOR_VERSION}.${POSTGIS_MICRO_VERSION} - jar - - Postgis JDBC Driver - http://www.postgis.org - PostGIS adds support for geographic objects to the PostgreSQL object-relational database. - - - - GNU Lesser General Public License - http://www.gnu.org/licenses/lgpl-2.1.txt - repo - - - - - - Postgis Development Team - - - María Arias de Reyna - delawen en gmail.com - - - - - Hakan Tandogan - hakan@gurkensalat.com - http://www.gurkensalat.com/ - - Maven Packager - - - - - - User List - postgis-users-subscribe@lists.osgeo.org - postgis-users-unsubscribe@lists.osgeo.org - postgis-users@lists.osgeo.org - http://lists.osgeo.org/pipermail/postgis-users/ - - - Developer List - postgis-devel-subscribe@lists.osgeo.org - postgis-devel-unsubscribe@lists.osgeo.org - postgis-devel@lists.osgeo.org - http://lists.osgeo.org/pipermail/postgis-devel/ - - - - Trac - http://trac.osgeo.org/postgis/ - - - http://trac.osgeo.org/postgis/browser/tags/2.0.0 - scm:svn:http://svn.osgeo.org/postgis/tags/2.0.0/ - scm:svn:http://svn.osgeo.org/postgis/tags/2.0.0/ - - - + 4.0.0 + + + org.sonatype.oss + oss-parent + 7 + - ${basedir}/src - - - - src - true - - **/*.properties - - - **/*.java - - - + org.postgis + postgis-jdbc + 2.1.0SVN + jar + Postgis JDBC Driver + http://www.postgis.org + PostGIS adds support for geographic objects to the PostgreSQL object-relational database. - - + - + ${basedir}/src + + + + src + true + + **/*.properties + + + **/*.java + + + - - - postgresql - postgresql - 9.1-901.jdbc3 - - - - - - maven-javadoc-plugin - - - maven-dependency-plugin - - - maven-project-info-reports-plugin - - - maven-surefire-report-plugin - - - org.codehaus.mojo - findbugs-maven-plugin - - - org.codehaus.mojo - javancss-maven-plugin - - - org.codehaus.mojo - jdepend-maven-plugin - - - org.codehaus.mojo - jxr-maven-plugin - - - org.codehaus.mojo - taglist-maven-plugin - - - org.codehaus.mojo - versions-maven-plugin - - - + + + maven-javadoc-plugin + 2.9.1 + + ${basedir}/src/java/org/postgis/overview.html + + + + - - - sonatype-postgis-releases - Sonatype Postgis Releases Repo - http://oss.sonatype.org/content/repositories/postgis-releases - - - + + + postgresql + postgresql + 9.1-901.jdbc3 + + - - 2 - 1 - 0SVN - + + + sonatype-postgis-releases + Sonatype Postgis Releases Repo + http://oss.sonatype.org/content/repositories/postgis-releases + + diff --git a/java/jdbc/src/org/postgis/overview.html b/java/jdbc/src/org/postgis/overview.html new file mode 100644 index 000000000..726a4b979 --- /dev/null +++ b/java/jdbc/src/org/postgis/overview.html @@ -0,0 +1,15 @@ + +

+ The JDBC extensions provide Java objects corresponding to the internal PostGIS types. These objects can be used to write Java clients which query the PostGIS database and draw or do calculations on the GIS data in PostGIS. +

+ +

+ The JDBC extensions require a PostgreSQL JDBC driver to be present in the current CLASSPATH during the build process. +

+

+ PostgreSQL JDBC drivers can be downloaded from http://jdbc.postgresql.org or Sonatype Central Maven repository. +

+ -- 2.50.1