Skip to content

Commit f19e036

Browse files
committed
Upgrade other dependencies
1 parent 5b309bb commit f19e036

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

pom.xml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414
<properties>
1515
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1616
<java.version>11</java.version>
17-
<kotlin.version>1.8.21</kotlin.version>
18-
<kotlin-coroutines.version>1.7.3</kotlin-coroutines.version>
19-
<jackson.version>2.16.0</jackson.version>
20-
<graphql-java.version>21.3</graphql-java.version>
17+
<kotlin.version>2.0.20</kotlin.version>
18+
<kotlin-coroutines.version>1.9.0</kotlin-coroutines.version>
19+
<jackson.version>2.17.0</jackson.version>
20+
<graphql-java.version>22.3</graphql-java.version>
2121
<reactive-streams.version>1.0.4</reactive-streams.version>
2222

2323
<maven.compiler.source>${java.version}</maven.compiler.source>
@@ -45,7 +45,7 @@
4545
<dependency>
4646
<groupId>com.graphql-java</groupId>
4747
<artifactId>graphql-java</artifactId>
48-
<version>22.3</version>
48+
<version>${graphql-java.version}</version>
4949
</dependency>
5050
<dependency>
5151
<groupId>org.antlr</groupId>
@@ -83,15 +83,15 @@
8383
<version>3.29.2-GA</version>
8484
<scope>provided</scope>
8585
</dependency>
86-
<!-- Optional for supporting spring proxies -->
86+
<!-- Optional for supporting Spring proxies -->
8787
<dependency>
8888
<groupId>org.springframework</groupId>
8989
<artifactId>spring-aop</artifactId>
9090
<version>5.3.31</version>
9191
<scope>provided</scope>
9292
</dependency>
9393

94-
<!-- Test -->
94+
<!-- Test -->
9595
<dependency>
9696
<groupId>cglib</groupId>
9797
<artifactId>cglib-nodep</artifactId>
@@ -134,8 +134,8 @@
134134
<dependency>
135135
<groupId>org.jetbrains.kotlin</groupId>
136136
<artifactId>kotlin-stdlib</artifactId>
137-
<!--TODO remove this after upgrading kotlin-->
138137
<exclusions>
138+
<!-- kotlinx-coroutines-core-jvm brings more recent version -->
139139
<exclusion>
140140
<groupId>org.jetbrains</groupId>
141141
<artifactId>annotations</artifactId>
@@ -306,7 +306,7 @@
306306
<includes>
307307
<include>**/*Test.*</include>
308308
</includes>
309-
<!-- or solve this differently? tests fail-->
309+
<!-- or solve this differently? tests fail-->
310310
<argLine>--add-reads kotlin.stdlib=kotlinx.coroutines.core</argLine>
311311
</configuration>
312312
</plugin>

0 commit comments

Comments
 (0)