I'm using gradle and need to bring the latest Spring Data Neo4j into my project.
My build file includes -
repositories {
mavenCentral()
maven{
url 'http://m2.neo4j.org/content/repositories/releases/org/neo4j/neo4j-cypher-dsl/1.9.M04'
}
}
dependencies {
compile 'org.springframework.data:spring-data-neo4j:2.3.1.RELEASE'
}
My question seems almost the same as this one:
and this one:
Unable to find neo4j-cypher-dsl version 1.9.M04 anywhere
When I run 'gradle build' I get the following error:
* What went wrong:
Could not resolve all dependencies for configuration ':runtime'.
Could not find org.neo4j:neo4j-cypher-dsl:1.9.
Required by:
:my_project > org.springframework.data:spring-data-neo4j:2.3.1.RELEASE
Any help is much appreciated.