Skip to content

Commit 81658da

Browse files
authored
Update to latest kotlin and fix incorrect jackson version in the example (#233)
1 parent 5bf396e commit 81658da

File tree

2 files changed

+9
-14
lines changed

2 files changed

+9
-14
lines changed

example/pom.xml

Lines changed: 7 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,8 @@
6161
<properties>
6262
<!-- Project versions -->
6363
<java.version>1.8</java.version>
64-
<kotlin.version>1.3.21</kotlin.version>
64+
<kotlin.version>1.3.31</kotlin.version>
65+
<spring-boot.version>2.1.2.RELEASE</spring-boot.version>
6566

6667
<!-- Dependency Versions -->
6768
<graphql-kotlin.version>0.4.1-SNAPSHOT</graphql-kotlin.version>
@@ -79,26 +80,20 @@
7980
<version>${graphql-kotlin.version}</version>
8081
</dependency>
8182
<dependency>
82-
<groupId>org.springframework.boot</groupId>
83-
<artifactId>spring-boot-starter-webflux</artifactId>
84-
<version>2.1.2.RELEASE</version>
83+
<groupId>com.fasterxml.jackson.module</groupId>
84+
<artifactId>jackson-module-kotlin</artifactId>
8585
</dependency>
8686
<dependency>
87-
<groupId>io.projectreactor.netty</groupId>
88-
<artifactId>reactor-netty</artifactId>
89-
<version>0.8.4.RELEASE</version>
87+
<groupId>org.springframework.boot</groupId>
88+
<artifactId>spring-boot-starter-webflux</artifactId>
89+
<version>${spring-boot.version}</version>
9090
</dependency>
9191
<dependency>
9292
<groupId>org.jetbrains.kotlin</groupId>
9393
<artifactId>kotlin-test</artifactId>
9494
<version>${kotlin.version}</version>
9595
<scope>test</scope>
9696
</dependency>
97-
<dependency>
98-
<groupId>com.fasterxml.jackson.module</groupId>
99-
<artifactId>jackson-module-kotlin</artifactId>
100-
<version>2.8.8</version>
101-
</dependency>
10297
</dependencies>
10398

10499
<build>

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@
7676
<!-- Dependency Versions -->
7777
<graphql-java.version>11.0</graphql-java.version>
7878
<jackson-module-kotlin.version>2.9.8</jackson-module-kotlin.version>
79-
<kotlin.version>1.3.21</kotlin.version>
80-
<kotlin-coroutines.version>1.1.1</kotlin-coroutines.version>
79+
<kotlin.version>1.3.31</kotlin.version>
80+
<kotlin-coroutines.version>1.2.1</kotlin-coroutines.version>
8181
<reflections.version>0.9.11</reflections.version>
8282

8383
<!-- Test Dependency Versions -->

0 commit comments

Comments
 (0)