So, I ended up manually manage dependencies, this is my BuildConfig.groovy in
case somebody might be facing the same problem as I am and a newbie grails
user.

repositories {
        grailsPlugins()
        grailsHome()
        grailsCentral()

        // uncomment the below to enable remote dependency resolution
        // from public Maven repositories
        mavenLocal()
        mavenCentral()

        flatDir name:'neo4j', dirs:'/${PATH}/lib/neo4j'

    }
    dependencies {
        // specify dependencies here under either 'build', 'compile',
'runtime', 'test' or 'provided' scopes eg.
        compile 'org.seleniumhq.selenium:selenium-java:2.3.1'

        compile 'org.neo4j:neo4j-kernel:1.4.1'
        compile 'org.neo4j:neo4j-cypher:1.4.1'
        compile 'org.neo4j:neo4j-graph-algo:1.4.1'
        compile 'org.neo4j:neo4j-graph-matching:1.4.1'
        compile 'org.neo4j:neo4j-jmx:1.4.1'
        compile 'org.neo4j:neo4j-lucene-index:1.4.1'
        compile 'org.neo4j:neo4j-shell:1.4.1'
        compile 'org.neo4j:neo4j-udc:1.4.1'
        compile 'org.neo4j:lucene-core:3.1.0'
        compile 'org.neo4j:scala-library:2.9.0-1'
        compile 'org.neo4j:server-api:1.4.1'

    }

--
View this message in context: 
http://neo4j-community-discussions.438527.n3.nabble.com/Grails-with-neo4j-ivy-doesn-t-contain-class-files-tp3226748p3227090.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

Reply via email to