Maven build error - python neo4j built-in

I am trying to create the latest Python Embedded Neo4j built-in bindings cloned from https://github.com/neo4j-contrib/python-embedded.git . This is my first attempt to create a project using Maven, so I could just skip something simple.

Reading the project documents, I started mvn package, which led to dependency errors, detailed output is added here, http://pastebin.com/CBr2XXqQ

Some tips made me try mvn install, which seemed to load some dependency POM files, but there is still a build error, citing an unresolved artifact for org.neo4j:neo4j:jar:1.9-SNAPSHOT, org.neo4j:neo4j-cypher:jar:1.9-SNAPSHOT, http://pastebin.com/cGLNWnxU

Can someone shed some light on how best to solve this problem?

0
source share
1 answer

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

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

:

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

And run mvn install again. We hope that there will be no compatibility issues between snapshots and the release of version 1.9.

0
source

Source: https://habr.com/ru/post/1668648/


All Articles