Hi James,

I initially gave this a go and it worked, but found I had cached version of
the parent pom in my local maven repo.  Removing this I got the same issue
you had.

You can get this working by replacing the parent pom reference in the
pom.xml file with:
  <parent>
    <groupId>org.neo4j.build</groupId>
    <artifactId>parent-central</artifactId>
    <version>25</version>
  </parent>
Instead of the current:
  <parent>
    <groupId>org.neo4j</groupId>
    <artifactId>parent-pom</artifactId>
    <version>6</version>
  </parent>

It still wont work quite as is though.  The build will fail on a license
check, so do compile like:
mvn -Dlicense.failIfMissing=false compile

Should work.

Cheers
Bryce

On Fri, Sep 9, 2011 at 2:12 PM, espeed <ja...@jamesthornton.com> wrote:

> Hi Guys -
>
> I'm trying to compile and run the "write test"
> (https://svn.neo4j.org/laboratory/users/johan/write-test) from
> http://wiki.neo4j.org/content/Linux_Performance_Guide, and I'm getting
> this
> error:
>
>   https://gist.github.com/1205327
>
> Is there a newer version of this?
>
> Thanks.
>
> - James
>
> --
> View this message in context:
> http://neo4j-community-discussions.438527.n3.nabble.com/Neo4j-Write-Test-Compile-Error-tp3321729p3321729.html
> Sent from the Neo4j Community Discussions mailing list archive at
> Nabble.com.
> _______________________________________________
> Neo4j mailing list
> User@lists.neo4j.org
> https://lists.neo4j.org/mailman/listinfo/user
>
_______________________________________________
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user

Reply via email to