Installation
KGraphQL is pushed to bintray repository and also linked to JCenter. It requires kotlin compiler version 1.3.x and require kotlin runtime of the same version as a dependency.
Add Bintray JCenter repository:
repositories {
jcenter()
}
Add dependencies:
implementation("com.apurebase:kgraphql:$KGraphQLVersion")
Add Bintray JCenter repository:
repositories {
jcenter()
}
Add dependencies (you can also add other modules that you need):
implementation 'com.apurebase:kgraphql:${KGraphQLVersion}'
Add Bintray JCenter repository to section:
<repositories>
<repository>
<id>jcenter</id>
<url>https://jcenter.bintray.com/</url>
</repository>
</repositories>
Add dependency:
<dependency>
<groupId>com.apurebase</groupId>
<artifactId>kgraphql</artifactId>
<version>${KGraphQLVersion}</version>
</dependency>