I am trying to work with Spring Data and Neo4j. I started by trying to follow this guide linked to by the main site. In particular I based my pom.xml off of the \"Hello, Wor
I was using
org.apache.maven.plugins
maven-antrun-plugin
1.6
runSomeAntTasks
test-compile
.
.
run
and changed it to
org.apache.maven.plugins
maven-antrun-plugin
1.6
runSomeAntTasks
integration-test
.
.
run
and the error went away. Maybe it's not recommended to bind an execution to the test-compile phase so finding a different phase might be an alternate solution to adding plugin-management configuration to the maven lifecycle.