From 09875ba0a5006402801023a640913ccea656816c Mon Sep 17 00:00:00 2001 From: osbornb Date: Tue, 15 Sep 2015 09:29:42 -0600 Subject: [PATCH 1/3] pom central repository updates, standalone build updates --- pom.xml | 170 +++++++++++++++++++++++++++++++++++++++----------------- 1 file changed, 120 insertions(+), 50 deletions(-) diff --git a/pom.xml b/pom.xml index 04daf3e0..b50a3d83 100644 --- a/pom.xml +++ b/pom.xml @@ -64,59 +64,129 @@ test - + standalone - - ${project.artifactId}-${project.version}-standalone - - - maven-compiler-plugin - 3.1 - - 1.7 - 1.7 - - - - org.apache.maven.plugins - maven-shade-plugin - 2.3 - - - package - - shade - - - false - - - mil.nga.giat.geopackage.validate.Validate - - - META-INF/README.md - README.md - - - META-INF/LICENSE - LICENSE - - - .txt - - - - - - - - + + ${project.artifactId}-${project.version}-standalone + + + maven-compiler-plugin + 3.1 + + 1.7 + 1.7 + + + + org.apache.maven.plugins + maven-shade-plugin + 2.3 + + + package + + shade + + + false + + + mil.nga.geopackage.io.TileReader + + + META-INF/README.md + README.md + + + META-INF/LICENSE.txt + LICENSE.txt + + + .txt + + + + + + + + + + + + + org.apache.maven.plugins + maven-source-plugin + 2.2.1 + + + attach-sources + + jar-no-fork + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.9.1 + + + attach-javadocs + + jar + + + -Xdoclint:none + + + + + + org.apache.maven.plugins + maven-gpg-plugin + + + sign-artifacts + deploy + + sign + + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.3 + true + + ossrh + https://oss.sonatype.org/ + true + + + + + + + + ossrh + https://oss.sonatype.org/content/repositories/snapshots + + + ossrh + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + From 0a8bc68142e29ddd4f96115de42ce140e9ceea4b Mon Sep 17 00:00:00 2001 From: osbornb Date: Tue, 15 Sep 2015 10:27:54 -0600 Subject: [PATCH 2/3] README central repository update --- README.md | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 2b50b733..6f0f163b 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Software source code previously released under an open source license and then m ### About ### -GeoPackage is a Java implementation of the Open Geospatial Consortium [GeoPackage](http://www.geopackage.org/) [spec](http://www.geopackage.org/spec/). +GeoPackage is a Java implementation of the Open Geospatial Consortium [GeoPackage](http://www.geopackage.org/) [spec](http://www.geopackage.org/spec/). It is listed as an [OGC GeoPackage Implementation](http://www.geopackage.org/#implementations) by the National Geospatial-Intelligence Agency. The GeoPackage Java library provides the ability to read, create, and edit GeoPackage files. @@ -72,11 +72,17 @@ The GeoPackage Java library provides the ability to read, create, and edit GeoPa // Close database when done geoPackage.close(); -### Build ### +### Installation ### + +Pull from the [Maven Central Repository](http://search.maven.org/#artifactdetails|mil.nga.geopackage|geopackage|1.0.0|jar) -The following repositories must be built first (Central Repository Artifacts Coming Soon): -* [GeoPackage WKB Java] (https://github.com/ngageoint/geopackage-wkb-java) -* [GeoPackage Core Java] (https://github.com/ngageoint/geopackage-core-java) + + mil.nga.geopackage + geopackage + 1.0.0 + + +### Build ### Build this repository using Eclipse and/or Maven: @@ -132,6 +138,7 @@ GeoPackage Format tiles.properties: #### Remote #### * [GeoPackage Core Java](https://github.com/ngageoint/geopackage-core-java) (The MIT License (MIT)) - GeoPackage Library +* [WKB](https://github.com/ngageoint/geopackage-wkb-java) (The MIT License (MIT)) - GeoPackage Well Known Binary Lib * [OrmLite](http://ormlite.com/) (Open Source License) - Object Relational Mapping (ORM) Library * [SQLite JDBC](https://bitbucket.org/xerial/sqlite-jdbc) (Apache License, Version 2.0) - SQLiteJDBC library From b861eced097cc2de9e94d1e98c29fc4034f77b19 Mon Sep 17 00:00:00 2001 From: osbornb Date: Tue, 15 Sep 2015 10:33:28 -0600 Subject: [PATCH 3/3] README about update --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6f0f163b..077bc269 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ Software source code previously released under an open source license and then m GeoPackage is a Java implementation of the Open Geospatial Consortium [GeoPackage](http://www.geopackage.org/) [spec](http://www.geopackage.org/spec/). It is listed as an [OGC GeoPackage Implementation](http://www.geopackage.org/#implementations) by the National Geospatial-Intelligence Agency. -The GeoPackage Java library provides the ability to read, create, and edit GeoPackage files. +The GeoPackage Java library provides the ability to read, create, and edit GeoPackage files. GeoPackage tiles can be imported from or exported to a file system folder structure. ### Usage ###