20
20
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
21
21
22
22
23
- # Intro
23
+ # Documentation
24
+
25
+ See our new [ Documentation] ( https://www.graphql-java-kickstart.com/spring-boot/ ) .
24
26
25
27
Repository contains:
26
28
@@ -42,13 +44,16 @@ repositories {
42
44
}
43
45
44
46
dependencies {
45
- compile 'com.graphql-java-kickstart:graphql-spring-boot-starter:5.1 '
47
+ compile 'com.graphql-java-kickstart:graphql-spring-boot-starter:5.2 '
46
48
47
49
// 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 '
49
51
50
52
// 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'
52
57
}
53
58
```
54
59
@@ -57,22 +62,31 @@ Maven:
57
62
<dependency >
58
63
<groupId >com.graphql-java-kickstart</groupId >
59
64
<artifactId >graphql-spring-boot-starter</artifactId >
60
- <version >5.1 </version >
65
+ <version >5.2 </version >
61
66
</dependency >
62
67
63
68
<!-- to embed GraphiQL tool -->
64
69
<dependency >
65
70
<groupId >com.graphql-java-kickstart</groupId >
66
71
<artifactId >graphiql-spring-boot-starter</artifactId >
67
- <version >5.1 </version >
72
+ <version >5.2 </version >
68
73
</dependency >
69
74
70
75
<!-- to embed Voyager tool -->
71
76
<dependency >
72
77
<groupId >com.graphql-java-kickstart</groupId >
73
78
<artifactId >voyager-spring-boot-starter</artifactId >
74
- <version >5.1 </version >
79
+ <version >5.2 </version >
75
80
</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
+
76
90
```
77
91
78
92
New releases will be available faster in the JCenter repository than in Maven Central. Add the following to use for Maven
0 commit comments