forked from neo4j-contrib/spatial
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:neo4j/spatial
Conflicts: pom.xml
- Loading branch information
Showing
10 changed files
with
360 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Makefile for the Embedded Neo4j Python bindings documentation. | ||
# | ||
|
||
# Project Configuration | ||
project_name = manual | ||
language = en | ||
|
||
# Minimal setup | ||
target = target | ||
build_dir = $(CURDIR)/$(target) | ||
config_dir = $(CURDIR)/docs/conf | ||
tools_dir = $(build_dir)/tools | ||
make_dir = $(tools_dir)/make | ||
|
||
include $(make_dir)/context-manual.make | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,9 @@ | |
|
||
Neo4j Spatial is a library facilitating the import, storage and querying of spatial data in the [Neo4j open source graph database](http://neo4j.org/). | ||
|
||
![Open Street Map](https://raw.github.com/neo4j/spatial/master/src/docs/dev/images/one-street.png "Open Street Map") | ||
This projects manual is deployed as part of the local build as the [Neo4j Spatial Manual](http://neo4j.github.io/spatial) | ||
|
||
![Open Street Map](https://raw.github.com/neo4j/spatial/master/src/docs/images/one-street.png "Open Street Map") | ||
|
||
|
||
Some key features include: | ||
|
@@ -117,6 +119,29 @@ Tested with: GeoServer 2.1.1 | |
mvn clean install | ||
~~~ | ||
|
||
|
||
### Building and deploying the docs### | ||
|
||
Add your Github credentials in your `~/.m2/settings.xml` | ||
|
||
~~~xml | ||
<settings> | ||
<servers> | ||
<server> | ||
<id>github</id> | ||
<username>[email protected]</username> | ||
<password>secret</password> | ||
</server> | ||
</servers> | ||
</settings> | ||
~~~ | ||
|
||
now do | ||
|
||
~~~bash | ||
mvn clean install site -Pneo-docs-build - | ||
~~~ | ||
|
||
### Deployment into Geoserver ### | ||
|
||
* unzip the `target/xxxx-server-plugin.zip` and the Neo4j libraries from your Neo4j download under `$NEO4J_HOME/lib` into `$GEOSERVER_HOME/webapps/geoserver/WEB-INF/lib` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[attributes] | ||
imagesdir=images | ||
iconsdir=images/icons | ||
imagestargetdir=target/src/images | ||
fontsdir=target/tools/bin/fonts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
${project.version} |
Oops, something went wrong.