Skip to content Skip to sidebar Skip to footer

Maven Build Error - Neo4j-embedded Python

I'm attempting to build the latest Embedded Neo4j Python bindings, cloned from https://github.com/neo4j-contrib/python-embedded.git. This is my first attempt at building a projec

Solution 1:

Not familiar with this particular project, but I have worked with Maven in the past. I notice that the 1.9-SNAPSHOT version of neo4j is no longer available. Try this: in the root of the source tree, find the file pom.xml. Change the following line:

<neo4j.version>1.9-SNAPSHOT</neo4j.version>

to this:

<neo4j.version>1.9</neo4j.version>

And run "mvn install" again. Hopefully there won't be any compatibility issues between the snapshots and release of version 1.9.

Post a Comment for "Maven Build Error - Neo4j-embedded Python"