2020<!-- END doctoc generated TOC please keep comment here to allow auto update -->
2121
2222
23- # Intro
23+ # Documentation
24+
25+ See our new [ Documentation] ( https://www.graphql-java-kickstart.com/spring-boot/ ) .
2426
2527Repository contains:
2628
@@ -42,13 +44,16 @@ repositories {
4244}
4345
4446dependencies {
45- compile 'com.graphql-java-kickstart:graphql-spring-boot-starter:5.1 '
47+ compile 'com.graphql-java-kickstart:graphql-spring-boot-starter:5.2 '
4648
4749 // to embed GraphiQL tool
48- compile 'com.graphql-java-kickstart:graphiql-spring-boot-starter:5.1 '
50+ compile 'com.graphql-java-kickstart:graphiql-spring-boot-starter:5.2 '
4951
5052 // to embed Voyager tool
51- compile 'com.graphql-java-kickstart:voyager-spring-boot-starter:5.1'
53+ compile 'com.graphql-java-kickstart:voyager-spring-boot-starter:5.2'
54+
55+ // testing facilities
56+ testCompile 'com.graphql-java-kickstart:graphql-spring-boot-starter-test:5.2'
5257}
5358```
5459
@@ -57,22 +62,31 @@ Maven:
5762<dependency >
5863 <groupId >com.graphql-java-kickstart</groupId >
5964 <artifactId >graphql-spring-boot-starter</artifactId >
60- <version >5.1 </version >
65+ <version >5.2 </version >
6166</dependency >
6267
6368<!-- to embed GraphiQL tool -->
6469<dependency >
6570 <groupId >com.graphql-java-kickstart</groupId >
6671 <artifactId >graphiql-spring-boot-starter</artifactId >
67- <version >5.1 </version >
72+ <version >5.2 </version >
6873</dependency >
6974
7075<!-- to embed Voyager tool -->
7176<dependency >
7277 <groupId >com.graphql-java-kickstart</groupId >
7378 <artifactId >voyager-spring-boot-starter</artifactId >
74- <version >5.1 </version >
79+ <version >5.2 </version >
7580</dependency >
81+
82+ <!-- testing facilities -->
83+ <dependency >
84+ <groupId >com.graphql-java-kickstart</groupId >
85+ <artifactId >graphql-spring-boot-starter-test</artifactId >
86+ <version >5.2</version >
87+ <scope >test</scope >
88+ </dependency >
89+
7690```
7791
7892New releases will be available faster in the JCenter repository than in Maven Central. Add the following to use for Maven
0 commit comments