americanexpress / nodes

A GraphQL JVM Client - Java, Kotlin, Scala, etc.
Apache License 2.0
307 stars 70 forks source link

gradle pull #66

Closed bhaskar-p7 closed 5 years ago

bhaskar-p7 commented 5 years ago

Can anyone help me with gradle pull request. My gralde projects is not dowloading the nodes jar file. I added below entry in my gradle build file. Is this the right version?

compile 'io.aexp.nodes.graphql:nodes:0.1.0'

I am not finding anything in Maven repo also.

chemdrew commented 5 years ago

it's hosted in jcenter and not in maven, also I recommend using 0.4.0, there have been some great bug fixes and improvements made since 0.1.0

Your gradle file should have the following to install it:

repositories {
    maven {
        url 'https://dl.bintray.com/americanexpress/maven/'
    }
}

dependencies {
    compile 'io.aexp.nodes.graphql:nodes:0.4.0'
}