Results 1 to 2 of 2

Thread: spring-data-neo4 2.2.0 maven error

  1. #1
    Join Date
    Aug 2012
    Location
    Montevideo, Uruguay
    Posts
    2

    Default spring-data-neo4 2.2.0 maven error

    I've added the dependency to my pom.xml but this generated an error:

    Missing artifact org.neo4j:neo4j-cypher-dsl:jar:1.9.M04

    <dependency>
    <groupId>org.springframework.data</groupId>
    <artifactId>spring-data-neo4j</artifactId>
    <version>2.2.0.RELEASE</version>
    </dependency>

    Anyone have this problem too?

    Thanks

    Agustin

  2. #2
    Join Date
    Aug 2012
    Location
    Montevideo, Uruguay
    Posts
    2

    Default

    Quote Originally Posted by djagu_26 View Post
    I've added the dependency to my pom.xml but this generated an error:

    Missing artifact org.neo4j:neo4j-cypher-dsl:jar:1.9.M04

    <dependency>
    <groupId>org.springframework.data</groupId>
    <artifactId>spring-data-neo4j</artifactId>
    <version>2.2.0.RELEASE</version>
    </dependency>

    Anyone have this problem too?

    Thanks

    Agustin

    The solution was add to my pom.xml:

    Code:
    <repository>
                <id>neo4j-public-repository</id>
                <url>http://m2.neo4j.org/</url>
                <name>Publicly available Maven 2 repository for Neo4j</name>
     </repository>

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •