Skip to content

Commit e093b87

Browse files
committed
Updated dependency settings in README
1 parent 6653b1d commit e093b87

File tree

1 file changed

+19
-4
lines changed

1 file changed

+19
-4
lines changed

README.md

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ GraphQL Java Tools works extremely well if you already have domain POJOs that ho
1010

1111
GraphQL Java Tools aims for seamless integration with Java, but works for any JVM language. Try it with Kotlin!
1212

13-
1413
## Why GraphQL Java Tools?
1514

1615
* **Schema First**: GraphQL Java Tools allows you to write your schema in a simple, portable way using the [GraphQL schema language](http://graphql.org/learn/schema/) instead of hard-to-read builders in code.
@@ -51,13 +50,29 @@ A few libraries exist to ease the boilerplate pain, including [GraphQL-Java's bu
5150

5251
```xml
5352
<dependency>
54-
<groupId>com.graphql-java</groupId>
53+
<groupId>com.graphql-java-kickstart</groupId>
5554
<artifactId>graphql-java-tools</artifactId>
56-
<version>5.2.4</version>
55+
<version>5.3.1</version>
5756
</dependency>
5857
```
5958
```groovy
60-
compile 'com.graphql-java:graphql-java-tools:5.2.4'
59+
compile 'com.graphql-java-kickstart:graphql-java-tools:5.3.1'
60+
```
61+
62+
New releases will be available faster in the JCenter repository than in Maven Central. Add the following to use for Maven
63+
```xml
64+
<repositories>
65+
<repository>
66+
<id>jcenter</id>
67+
<url>https://jcenter.bintray.com/</url>
68+
</repository>
69+
</repositories>
70+
```
71+
For Gradle:
72+
```groovy
73+
repositories {
74+
jcenter()
75+
}
6176
```
6277

6378
### Examples

0 commit comments

Comments
 (0)