database - Is the Neo4j plugin broken or is Grails 2.4.4? -
i have grails 2.4.4 app , when try install neo4j means of the plugin, this:
| error resolve error obtaining dependencies: not find artifact org.neo4j:neo4j-jdbc:jar:2.0.2 in grailscentral (https://repo.grails.org/grails/plugins) (use --stacktrace see full trace) | error resolve error obtaining dependencies: not find artifact org.neo4j:neo4j-jdbc:jar:2.0.2 in grailscentral (https://repo.grails.org/grails/plugins) (use --stacktrace see full trace) | error resolve error obtaining dependencies: not find artifact org.neo4j:neo4j-jdbc:jar:2.0.2 in grailscentral (https://repo.grails.org/grails/plugins) (use --stacktrace see full trace) | error not find artifact org.neo4j:neo4j-jdbc:jar:2.0.2 in grailscentral (https://repo.grails.org/grails/plugins)
this relevant output grails dependency-report
:
+--- org.grails.plugins:neo4j:2.0.0-m02 | \--- org.grails:grails-datastore-gorm-neo4j:2.0.0-m02 | >>>> org.neo4j:neo4j-jdbc:2.0.2 | \--- org.neo4j:neo4j-community:2.0.3 | \--- org.neo4j:neo4j-kernel:2.0.3 | \--- org.apache.geronimo.specs:geronimo-jta_1.1_spec:1.1.1 | \--- org.neo4j:neo4j-lucene-index:2.0.3 | \--- org.apache.lucene:lucene-core:3.6.2 | \--- org.neo4j:neo4j-graph-algo:2.0.3 | \--- org.neo4j:neo4j-udc:2.0.3 | \--- org.neo4j:neo4j-graph-matching:2.0.3 | \--- org.neo4j:neo4j-cypher:2.0.3 | \--- org.neo4j:neo4j-cypher-commons:2.0.3 | \--- org.neo4j:neo4j-cypher-compiler-1.9:2.0.3 | \--- org.neo4j:neo4j-cypher-compiler-2.0:2.0.3 | \--- org.parboiled:parboiled-scala_2.10:1.1.6 | \--- org.parboiled:parboiled-core:1.1.6 | \--- net.sf.opencsv:opencsv:2.0 | \--- org.scala-lang:scala-library:2.10.3 | \--- org.neo4j:neo4j-jmx:2.0.3 | \--- org.grails:grails-datastore-gorm-plugin-support:2.0.7.release | \--- org.grails:grails-datastore-web:2.0.7.release
(the >>>> org.neo4j:neo4j-jdbc:2.0.2
line highlighted in red.)
is there version of plugin work? or newer version of grails? or need newer version of coffee?
the neo4j jdbc driver not available via maven central. instead can found on http://m2.neo4j.org/. need repositories
closure in buildconfig.groovy
amend:
mavenrepo 'http://m2.neo4j.org/content/repositories/releases/'
Comments
Post a Comment