@@ -37,43 +37,59 @@ Gradle:
3737
3838``` gradle
3939repositories {
40+ jcenter()
4041 mavenCentral()
4142}
4243
4344dependencies {
44- compile 'com.graphql-java:graphql-spring-boot-starter:5.0.2 '
45+ compile 'com.graphql-java-kickstart :graphql-spring-boot-starter:5.0.3 '
4546
4647 // to embed GraphiQL tool
47- compile 'com.graphql-java:graphiql-spring-boot-starter:5.0.2 '
48+ compile 'com.graphql-java-kickstart :graphiql-spring-boot-starter:5.0.3 '
4849
4950 // to embed Voyager tool
50- compile 'com.graphql-java:voyager-spring-boot-starter:5.0.2 '
51+ compile 'com.graphql-java-kickstart :voyager-spring-boot-starter:5.0.3 '
5152}
5253```
5354
5455Maven:
5556``` xml
5657<dependency >
57- <groupId >com.graphql-java</groupId >
58+ <groupId >com.graphql-java-kickstart </groupId >
5859 <artifactId >graphql-spring-boot-starter</artifactId >
59- <version >5.0.2 </version >
60+ <version >5.0.3 </version >
6061</dependency >
6162
6263<!-- to embed GraphiQL tool -->
6364<dependency >
64- <groupId >com.graphql-java</groupId >
65+ <groupId >com.graphql-java-kickstart </groupId >
6566 <artifactId >graphiql-spring-boot-starter</artifactId >
66- <version >5.0.2 </version >
67+ <version >5.0.3 </version >
6768</dependency >
6869
6970<!-- to embed Voyager tool -->
7071<dependency >
71- <groupId >com.graphql-java</groupId >
72+ <groupId >com.graphql-java-kickstart </groupId >
7273 <artifactId >voyager-spring-boot-starter</artifactId >
73- <version >5.0.2 </version >
74+ <version >5.0.3 </version >
7475</dependency >
7576```
7677
78+ New releases will be available faster in the JCenter repository than in Maven Central. Add the following to use for Maven
79+ ``` xml
80+ <repositories >
81+ <repository >
82+ <id >jcenter</id >
83+ <url >https://jcenter.bintray.com/</url >
84+ </repository >
85+ </repositories >
86+ ```
87+ For Gradle:
88+ ``` groovy
89+ repositories {
90+ jcenter()
91+ }
92+ ```
7793
7894# Enable GraphQL Servlet
7995
0 commit comments