You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For further Java examples, refer to the test code in
281
-
the [LayersTest](https://github.com/neo4j-contrib/spatial/blob/master/src/test/java/org/neo4j/gis/spatial/LayersTest.java)
282
-
and
283
-
the [TestSpatial](https://github.com/neo4j-contrib/spatial/blob/master/src/test/java/org/neo4j/gis/spatial/TestSpatial.java)
284
-
classes.
278
+
For further Java examples, refer to the test code in the
279
+
[LayersTest](src/test/java/org/neo4j/gis/spatial/LayersTest.java) and
280
+
the [TestSpatial](src/test/java/org/neo4j/gis/spatial/TestSpatial.java) classes.
285
281
286
282
For further Procedures examples, refer to the code in
287
-
the [SpatialProceduresTest](https://github.com/neo4j-contrib/spatial/blob/master/src/test/java/org/neo4j/gis/spatial/procedures/SpatialProceduresTest.java)
283
+
the [SpatialProceduresTest](src/test/java/org/neo4j/gis/spatial/procedures/SpatialProceduresTest.java)
288
284
class.
289
285
290
286
## Neo4j Spatial Geoserver Plugin ##
@@ -306,7 +302,7 @@ This has not been tested at all in any GeoTools enabled application, but could p
306
302
### Building ###
307
303
308
304
~~~bash
309
-
mvn clean install
305
+
mvn clean install
310
306
~~~
311
307
312
308
### Deployment into Geoserver ###
@@ -326,38 +322,38 @@ This has not been tested at all in any GeoTools enabled application, but could p
326
322
* check out the geoserver source
327
323
328
324
~~~bash
329
-
svn co https://svn.codehaus.org/geoserver/trunk geoserver-trunk
325
+
svn co https://svn.codehaus.org/geoserver/trunk geoserver-trunk
330
326
~~~
331
327
332
328
* build the source
333
329
334
330
~~~bash
335
-
cd geoserver-trunk
336
-
mvn clean install
331
+
cd geoserver-trunk
332
+
mvn clean install
337
333
~~~
338
334
339
335
* check that you can run the web app as
340
336
of [The GeoServer Maven build guide](http://docs.geoserver.org/latest/en/developer/maven-guide/index.html#running-the-web-module-with-jetty)
341
337
342
338
~~~bash
343
-
cd src/web/app
344
-
mvn jetty:run
339
+
cd src/web/app
340
+
mvn jetty:run
345
341
~~~
346
342
347
343
* in `$GEOSERVER_SOURCE/src/web/app/pom.xml`https://svn.codehaus.org/geoserver/trunk/src/web/app/pom.xml, add the
348
344
following lines under the profiles section:
349
345
350
346
~~~xml
351
-
<profile>
352
-
<id>neo4j</id>
353
-
<dependencies>
354
-
<dependency>
355
-
<groupId>org.neo4j</groupId>
356
-
<artifactId>neo4j-spatial</artifactId>
357
-
<version>0.19-neo4j-3.0.3</version>
358
-
</dependency>
359
-
</dependencies>
360
-
</profile>
347
+
<profile>
348
+
<id>neo4j</id>
349
+
<dependencies>
350
+
<dependency>
351
+
<groupId>org.neo4j</groupId>
352
+
<artifactId>neo4j-spatial</artifactId>
353
+
<version>0.19-neo4j-3.0.3</version>
354
+
</dependency>
355
+
</dependencies>
356
+
</profile>
361
357
~~~
362
358
363
359
The version specified on the version line can be changed to match the version you wish to work with (based on the
@@ -461,15 +457,15 @@ The Java API (the original API for Neo4j Spatial) still remains, however, the mo
461
457
and therefor we recommend that if you need to access Neo4j server remotely, and want deeper access to Spatial functions,
462
458
consider writing your own Procedures. The Neo4j 3.0 documentation provides some good information on how to do this,
463
459
and you can also refer to
464
-
the [Neo4j Spatial procedures source code](https://github.com/neo4j-contrib/spatial/blob/master/src/main/java/org/neo4j/gis/spatial/procedures/SpatialProcedures.java)
460
+
the [Neo4j Spatial procedures source code](src/main/java/org/neo4j/gis/spatial/procedures/SpatialProcedures.java)
0 commit comments