1919
2020<!-- END doctoc generated TOC please keep comment here to allow auto update -->
2121
22- ## WARNING: NoClassDefFoundError when using GraphQL Java Tools 5.4.x
22+ ## WARNING: NoClassDefFoundError when using GraphQL Java Tools > 5.4.x
2323
2424If you're using ` graphl-java-tools ` you need to set the ` kotlin.version ` in your Spring Boot project explicitly to
2525version 1.3.10, because Spring Boot Starter parent currently overrides it with a 1.2.* version of Kotlin.
@@ -66,16 +66,16 @@ repositories {
6666}
6767
6868dependencies {
69- compile 'com.graphql-java-kickstart:graphql-spring-boot-starter:5.3.1 '
69+ compile 'com.graphql-java-kickstart:graphql-spring-boot-starter:5.5.0 '
7070
7171 // to embed GraphiQL tool
72- compile 'com.graphql-java-kickstart:graphiql-spring-boot-starter:5.3.1 '
72+ compile 'com.graphql-java-kickstart:graphiql-spring-boot-starter:5.5.0 '
7373
7474 // to embed Voyager tool
75- compile 'com.graphql-java-kickstart:voyager-spring-boot-starter:5.3.1 '
75+ compile 'com.graphql-java-kickstart:voyager-spring-boot-starter:5.5.0 '
7676
7777 // testing facilities
78- testCompile 'com.graphql-java-kickstart:graphql-spring-boot-starter-test:5.3.1 '
78+ testCompile 'com.graphql-java-kickstart:graphql-spring-boot-starter-test:5.5.0 '
7979}
8080```
8181
@@ -84,28 +84,28 @@ Maven:
8484<dependency >
8585 <groupId >com.graphql-java-kickstart</groupId >
8686 <artifactId >graphql-spring-boot-starter</artifactId >
87- <version >5.3.1 </version >
87+ <version >5.5.0 </version >
8888</dependency >
8989
9090<!-- to embed GraphiQL tool -->
9191<dependency >
9292 <groupId >com.graphql-java-kickstart</groupId >
9393 <artifactId >graphiql-spring-boot-starter</artifactId >
94- <version >5.3.1 </version >
94+ <version >5.5.0 </version >
9595</dependency >
9696
9797<!-- to embed Voyager tool -->
9898<dependency >
9999 <groupId >com.graphql-java-kickstart</groupId >
100100 <artifactId >voyager-spring-boot-starter</artifactId >
101- <version >5.3.1 </version >
101+ <version >5.5.0 </version >
102102</dependency >
103103
104104<!-- testing facilities -->
105105<dependency >
106106 <groupId >com.graphql-java-kickstart</groupId >
107107 <artifactId >graphql-spring-boot-starter-test</artifactId >
108- <version >5.3.1 </version >
108+ <version >5.5.0 </version >
109109 <scope >test</scope >
110110</dependency >
111111
0 commit comments