No se puede encontrar la dependencia de org.neo4j: neo4j-cypher-dsl: jar: 2.0.1
maven-3 spring-data-neo4j (1)
¿Por qué estás usando una versión tan antigua? ¿Eso es casi como 2 años obsoleto?
Deberá agregar m2.neo4j.org
como repositorio maven a su sección de repositorios.
Intentaba obtener las dependencias del repositorio, que se encuentra debajo del pom.xml.
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion> 4.0.0 </modelVersion>
<groupId> com.tp.neo4j </groupId>
<artifactId> springdata-neo4j </artifactId>
<version> 1.0 </version>
<dependencies>
<dependency>
<groupId> org.springframework.data </groupId>
<artifactId> spring-data-neo4j </artifactId>
<version> 3.1.2.RELEASE </version>
</dependency>
</dependencies>
</project>
Se org.neo4j:neo4j-cypher-dsl:jar:2.0.1
todas las dependencias excepto org.neo4j:neo4j-cypher-dsl:jar:2.0.1
. Y mostrando el siguiente error
[INFO] Building springdata-neo4j 1.0
[INFO] ------------------------------------------------------------------------
[WARNING] The POM for org.neo4j:neo4j-cypher-dsl:jar:2.0.1 is missing, no dependency information available
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 11.409s
[INFO] Finished at: Tue Jun 28 13:07:07 IST 2016
[INFO] Final Memory: 6M/153M
[INFO] ------------------------------------------------------------------------
[ERROR]Failed to execute goal on project springdata-neo4j: Could not resolve dependencies for project com.tp.neo4j:springdata-neo4j:jar:1.0: Failure to find org.neo4j:neo4j-cypher-dsl:jar:2.0.1 in https://maven......../repositories/core-releases was cached in the local repository, resolution will not be reattempted until the update interval of core-releases has elapsed or updates are forced -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/DependencyResolutionException
Traté de excluir lo mismo. Pero aún no funciona.
<exclusions>
<exclusion>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-cypher</artifactId>
</exclusion>
</exclusions>
/.m2/repository/org/neo4j
carpeta /.m2/repository/org/neo4j
e intenté de nuevo. Sigue sin funcionar. Noté que el neo4j-cypher-dsl tiene una versión 2.0.1 pero casi todos los demás tienen 2.2.5. Me pregunto por qué solo falta una dependencia en los releases principales.