@@ -50,8 +50,8 @@ and join the team!
5050
5151If you're using ` graphql-java-tools ` in combination with Spring Boot 2.1.x or below then you need to
5252set the
53- ` kotlin.version ` in your Spring Boot project explicitly to version 1.3.70, because Spring Boot
54- Starter parent currently overrides it with a 1.2.* version of Kotlin.
53+ ` kotlin.version ` in your Spring Boot project explicitly to version >= 1.3.70, because Spring Boot
54+ Starter parent of that Spring Boot version overrides it with a 1.2.* version of Kotlin.
5555` graphql-java-tools ` requires 1.3.* however because of its coroutine support. If you don't override
5656this version you will run into a ` NoClassDefFoundError ` .
5757
@@ -108,19 +108,19 @@ repositories {
108108}
109109
110110dependencies {
111- implementation 'com.graphql-java-kickstart:graphql-spring-boot-starter:8.1 .0'
111+ implementation 'com.graphql-java-kickstart:graphql-spring-boot-starter:11.0 .0'
112112
113113 // to embed Altair tool
114- runtimeOnly 'com.graphql-java-kickstart:altair-spring-boot-starter:8.1 .0'
114+ runtimeOnly 'com.graphql-java-kickstart:altair-spring-boot-starter:11.0 .0'
115115
116116 // to embed GraphiQL tool
117- runtimeOnly 'com.graphql-java-kickstart:graphiql-spring-boot-starter:8.1 .0'
117+ runtimeOnly 'com.graphql-java-kickstart:graphiql-spring-boot-starter:11.0 .0'
118118
119119 // to embed Voyager tool
120- runtimeOnly 'com.graphql-java-kickstart:voyager-spring-boot-starter:8.1 .0'
120+ runtimeOnly 'com.graphql-java-kickstart:voyager-spring-boot-starter:11.0 .0'
121121
122122 // testing facilities
123- testImplementation 'com.graphql-java-kickstart:graphql-spring-boot-starter-test:8.1 .0'
123+ testImplementation 'com.graphql-java-kickstart:graphql-spring-boot-starter-test:11.0 .0'
124124}
125125```
126126
@@ -130,38 +130,38 @@ Maven:
130130<dependency >
131131 <groupId >com.graphql-java-kickstart</groupId >
132132 <artifactId >graphql-spring-boot-starter</artifactId >
133- <version >8.1 .0</version >
133+ <version >11.0 .0</version >
134134</dependency >
135135
136136<!-- to embed Altair tool -->
137137<dependency >
138138 <groupId >com.graphql-java-kickstart</groupId >
139139 <artifactId >altair-spring-boot-starter</artifactId >
140- <version >8.1 .0</version >
140+ <version >11.0 .0</version >
141141 <scope >runtime</scope >
142142</dependency >
143143
144144<!-- to embed GraphiQL tool -->
145145<dependency >
146146 <groupId >com.graphql-java-kickstart</groupId >
147147 <artifactId >graphiql-spring-boot-starter</artifactId >
148- <version >8.1 .0</version >
148+ <version >11.0 .0</version >
149149 <scope >runtime</scope >
150150</dependency >
151151
152152<!-- to embed Voyager tool -->
153153<dependency >
154154 <groupId >com.graphql-java-kickstart</groupId >
155155 <artifactId >voyager-spring-boot-starter</artifactId >
156- <version >8.1 .0</version >
156+ <version >11.0 .0</version >
157157 <scope >runtime</scope >
158158</dependency >
159159
160160<!-- testing facilities -->
161161<dependency >
162162 <groupId >com.graphql-java-kickstart</groupId >
163163 <artifactId >graphql-spring-boot-starter-test</artifactId >
164- <version >8.1 .0</version >
164+ <version >11.0 .0</version >
165165 <scope >test</scope >
166166</dependency >
167167
0 commit comments