@@ -50,8 +50,8 @@ and join the team!
50
50
51
51
If you're using ` graphql-java-tools ` in combination with Spring Boot 2.1.x or below then you need to
52
52
set 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.
55
55
` graphql-java-tools ` requires 1.3.* however because of its coroutine support. If you don't override
56
56
this version you will run into a ` NoClassDefFoundError ` .
57
57
@@ -108,19 +108,19 @@ repositories {
108
108
}
109
109
110
110
dependencies {
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'
112
112
113
113
// 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'
115
115
116
116
// 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'
118
118
119
119
// 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'
121
121
122
122
// 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'
124
124
}
125
125
```
126
126
@@ -130,38 +130,38 @@ Maven:
130
130
<dependency >
131
131
<groupId >com.graphql-java-kickstart</groupId >
132
132
<artifactId >graphql-spring-boot-starter</artifactId >
133
- <version >8.1 .0</version >
133
+ <version >11.0 .0</version >
134
134
</dependency >
135
135
136
136
<!-- to embed Altair tool -->
137
137
<dependency >
138
138
<groupId >com.graphql-java-kickstart</groupId >
139
139
<artifactId >altair-spring-boot-starter</artifactId >
140
- <version >8.1 .0</version >
140
+ <version >11.0 .0</version >
141
141
<scope >runtime</scope >
142
142
</dependency >
143
143
144
144
<!-- to embed GraphiQL tool -->
145
145
<dependency >
146
146
<groupId >com.graphql-java-kickstart</groupId >
147
147
<artifactId >graphiql-spring-boot-starter</artifactId >
148
- <version >8.1 .0</version >
148
+ <version >11.0 .0</version >
149
149
<scope >runtime</scope >
150
150
</dependency >
151
151
152
152
<!-- to embed Voyager tool -->
153
153
<dependency >
154
154
<groupId >com.graphql-java-kickstart</groupId >
155
155
<artifactId >voyager-spring-boot-starter</artifactId >
156
- <version >8.1 .0</version >
156
+ <version >11.0 .0</version >
157
157
<scope >runtime</scope >
158
158
</dependency >
159
159
160
160
<!-- testing facilities -->
161
161
<dependency >
162
162
<groupId >com.graphql-java-kickstart</groupId >
163
163
<artifactId >graphql-spring-boot-starter-test</artifactId >
164
- <version >8.1 .0</version >
164
+ <version >11.0 .0</version >
165
165
<scope >test</scope >
166
166
</dependency >
167
167
0 commit comments