How to add dependency for neo4j-spatial in Play! Framework build.scala ?
I as using the following resolver in Build.scala to import Neo4j:
libraryDependencies += "com.github.tuxBurner" %% "play-neo4jplugin" % "1.3.5"
resolvers += "Neo4j" at "http://m2.neo4j.org/content/repositories/releases/"
How should I include Neo4j-Spatial? I want to use something like the following in my Java code:
SpatialDatabaseService spatialService = new SpatialDatabaseService(database);
SpatialDatabaseService is currently unresolved. (I am using Play 2.2.2)