Skip to content
This repository was archived by the owner on Dec 19, 2023. It is now read-only.

Commit 9829132

Browse files
committed
Updated README to include new group ids and jcenter repository
1 parent dff95f6 commit 9829132

File tree

1 file changed

+25
-9
lines changed

1 file changed

+25
-9
lines changed

README.md

Lines changed: 25 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -37,43 +37,59 @@ Gradle:
3737

3838
```gradle
3939
repositories {
40+
jcenter()
4041
mavenCentral()
4142
}
4243
4344
dependencies {
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

5455
Maven:
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

Comments
 (0)