Skip to content

Commit 7ac5bbd

Browse files
committed
Upgrade dependencies
1 parent cc8e350 commit 7ac5bbd

File tree

2 files changed

+11
-10
lines changed

2 files changed

+11
-10
lines changed

README.md

+6-5
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![TravisCI Build](https://travis-ci.org/graphql-java-kickstart/graphql-java-tools.svg?branch=master)](https://travis-ci.org/graphql-java-kickstart/graphql-java-tools)
44
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.graphql-java-kickstart/graphql-java-tools/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.graphql-java-kickstart/graphql-java-tools)
5-
[![Chat on Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/graphql-java-kickstart/Lobby)
5+
[![Chat on Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://graphqljavakickstart.slack.com)
66

77
This library allows you to use the GraphQL schema language to build your [graphql-java](https://github.com/graphql-java/graphql-java) schema.
88
Inspired by [graphql-tools](https://github.com/apollographql/graphql-tools), it parses the given GraphQL schema and allows you to BYOO (bring your own object) to fill in the implementations.
@@ -12,8 +12,9 @@ GraphQL Java Tools aims for seamless integration with Java, but works for any JV
1212

1313
## WARNING: NoClassDefFoundError when using Spring Boot
1414

15-
If you're using `graphl-java-tools` you need to set the `kotlin.version` in your Spring Boot project explicitly to
16-
version 1.3.10, because Spring Boot Starter parent currently overrides it with a 1.2.* version of Kotlin.
15+
If you're using `graphl-java-tools` with Spring Boot version lower than 2.2 you need to set the `kotlin.version` in
16+
your Spring Boot project explicitly to version 1.3.70, because Spring Boot Starter parent currently overrides it with
17+
a 1.2.* version of Kotlin.
1718
`graphql-java-tools` requires 1.3.* however because of its coroutine support. If you don't override this version
1819
you will run into a `NoClassDefFoundError`.
1920

@@ -22,14 +23,14 @@ Spring Boot team has indicated the Kotlin version will be upgraded to 1.3 in Spr
2223
### Using Gradle
2324
Set the Kotlin version in your `gradle.properties`
2425
```
25-
kotlin.version=1.3.10
26+
kotlin.version=1.3.70
2627
```
2728

2829
### Using Maven
2930
Set the Kotlin version in your `<properties>` section
3031
```xml
3132
<properties>
32-
<kotlin.version>1.3.10</kotlin.version>
33+
<kotlin.version>1.3.70</kotlin.version>
3334
</properties>
3435
```
3536

pom.xml

+5-5
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
<properties>
1515
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1616
<java.version>1.8</java.version>
17-
<kotlin.version>1.3.31</kotlin.version>
18-
<kotlin-coroutines.version>1.2.1</kotlin-coroutines.version>
19-
<jackson.version>2.10.0</jackson.version>
17+
<kotlin.version>1.3.70</kotlin.version>
18+
<kotlin-coroutines.version>1.3.5</kotlin-coroutines.version>
19+
<jackson.version>2.10.3</jackson.version>
2020
<graphql-java.version>14.0</graphql-java.version>
2121

2222
<maven.compiler.source>${java.version}</maven.compiler.source>
@@ -331,7 +331,7 @@
331331
<plugin>
332332
<groupId>org.apache.maven.plugins</groupId>
333333
<artifactId>maven-source-plugin</artifactId>
334-
<version>3.0.1</version>
334+
<version>3.2.1</version>
335335
<executions>
336336
<execution>
337337
<id>attach-sources</id>
@@ -345,7 +345,7 @@
345345
<plugin>
346346
<groupId>org.apache.maven.plugins</groupId>
347347
<artifactId>maven-javadoc-plugin</artifactId>
348-
<version>3.1.0</version>
348+
<version>3.2.0</version>
349349
<executions>
350350
<execution>
351351
<id>attach-javadocs</id>

0 commit comments

Comments
 (0)