|
14 | 14 | <properties> |
15 | 15 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
16 | 16 | <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> |
21 | 21 | <reactive-streams.version>1.0.4</reactive-streams.version> |
22 | 22 |
|
23 | 23 | <maven.compiler.source>${java.version}</maven.compiler.source> |
|
45 | 45 | <dependency> |
46 | 46 | <groupId>com.graphql-java</groupId> |
47 | 47 | <artifactId>graphql-java</artifactId> |
48 | | - <version>22.3</version> |
| 48 | + <version>${graphql-java.version}</version> |
49 | 49 | </dependency> |
50 | 50 | <dependency> |
51 | 51 | <groupId>org.antlr</groupId> |
|
83 | 83 | <version>3.29.2-GA</version> |
84 | 84 | <scope>provided</scope> |
85 | 85 | </dependency> |
86 | | - <!-- Optional for supporting spring proxies --> |
| 86 | + <!-- Optional for supporting Spring proxies --> |
87 | 87 | <dependency> |
88 | 88 | <groupId>org.springframework</groupId> |
89 | 89 | <artifactId>spring-aop</artifactId> |
90 | 90 | <version>5.3.31</version> |
91 | 91 | <scope>provided</scope> |
92 | 92 | </dependency> |
93 | 93 |
|
94 | | - <!-- Test --> |
| 94 | + <!-- Test --> |
95 | 95 | <dependency> |
96 | 96 | <groupId>cglib</groupId> |
97 | 97 | <artifactId>cglib-nodep</artifactId> |
|
134 | 134 | <dependency> |
135 | 135 | <groupId>org.jetbrains.kotlin</groupId> |
136 | 136 | <artifactId>kotlin-stdlib</artifactId> |
137 | | - <!--TODO remove this after upgrading kotlin--> |
138 | 137 | <exclusions> |
| 138 | + <!-- kotlinx-coroutines-core-jvm brings more recent version --> |
139 | 139 | <exclusion> |
140 | 140 | <groupId>org.jetbrains</groupId> |
141 | 141 | <artifactId>annotations</artifactId> |
|
306 | 306 | <includes> |
307 | 307 | <include>**/*Test.*</include> |
308 | 308 | </includes> |
309 | | -<!-- or solve this differently? tests fail--> |
| 309 | + <!-- or solve this differently? tests fail--> |
310 | 310 | <argLine>--add-reads kotlin.stdlib=kotlinx.coroutines.core</argLine> |
311 | 311 | </configuration> |
312 | 312 | </plugin> |
|
0 commit comments