|
4 | 4 |
|
5 | 5 | <groupId>com.graphql-java-kickstart</groupId>
|
6 | 6 | <artifactId>graphql-java-tools</artifactId>
|
7 |
| - <version>13.0.4-SNAPSHOT</version> |
| 7 | + <version>14.0.1-SNAPSHOT</version> |
8 | 8 | <packaging>jar</packaging>
|
9 | 9 |
|
10 | 10 | <name>GraphQL Java Tools</name>
|
|
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.6.4</kotlin-coroutines.version> |
19 |
| - <jackson.version>2.14.2</jackson.version> |
20 |
| - <graphql-java.version>21.0</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.18.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>
|
|
50 | 50 | <dependency>
|
51 | 51 | <groupId>org.antlr</groupId>
|
52 | 52 | <artifactId>antlr4-runtime</artifactId>
|
53 |
| - <version>4.9.3</version> |
| 53 | + <version>4.11.1</version> |
54 | 54 | <scope>compile</scope>
|
55 | 55 | </dependency>
|
56 | 56 | <dependency>
|
|
63 | 63 | <dependency>
|
64 | 64 | <groupId>com.fasterxml</groupId>
|
65 | 65 | <artifactId>classmate</artifactId>
|
66 |
| - <version>1.5.1</version> |
| 66 | + <version>1.7.0</version> |
67 | 67 | </dependency>
|
68 | 68 | <dependency>
|
69 | 69 | <groupId>org.slf4j</groupId>
|
70 | 70 | <artifactId>slf4j-api</artifactId>
|
71 |
| - <version>2.0.6</version> |
| 71 | + <version>2.0.16</version> |
72 | 72 | </dependency>
|
73 | 73 | <dependency>
|
74 | 74 | <groupId>org.apache.commons</groupId>
|
75 | 75 | <artifactId>commons-lang3</artifactId>
|
76 |
| - <version>3.12.0</version> |
| 76 | + <version>3.17.0</version> |
77 | 77 | </dependency>
|
78 | 78 |
|
79 | 79 | <!-- Optional for supporting Javassist proxies -->
|
80 | 80 | <dependency>
|
81 | 81 | <groupId>org.javassist</groupId>
|
82 | 82 | <artifactId>javassist</artifactId>
|
83 |
| - <version>3.29.2-GA</version> |
| 83 | + <version>3.30.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 |
| - <version>5.3.25</version> |
| 90 | + <version>5.3.39</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>
|
|
100 | 100 | <dependency>
|
101 | 101 | <groupId>ch.qos.logback</groupId>
|
102 | 102 | <artifactId>logback-classic</artifactId>
|
103 |
| - <version>1.3.6</version> |
| 103 | + <version>1.5.9</version> |
104 | 104 | </dependency>
|
105 | 105 | <dependency>
|
106 | 106 | <groupId>javax.servlet</groupId>
|
|
115 | 115 | <dependency>
|
116 | 116 | <groupId>org.objenesis</groupId>
|
117 | 117 | <artifactId>objenesis</artifactId>
|
118 |
| - <version>3.3</version> |
| 118 | + <version>3.4</version> |
119 | 119 | </dependency>
|
120 | 120 | <dependency>
|
121 | 121 | <groupId>org.reactivestreams</groupId>
|
|
134 | 134 | <dependency>
|
135 | 135 | <groupId>org.jetbrains.kotlin</groupId>
|
136 | 136 | <artifactId>kotlin-stdlib</artifactId>
|
| 137 | + <exclusions> |
| 138 | + <!-- kotlinx-coroutines-core-jvm brings more recent version --> |
| 139 | + <exclusion> |
| 140 | + <groupId>org.jetbrains</groupId> |
| 141 | + <artifactId>annotations</artifactId> |
| 142 | + </exclusion> |
| 143 | + </exclusions> |
137 | 144 | </dependency>
|
138 | 145 | <dependency>
|
139 | 146 | <groupId>org.jetbrains.kotlin</groupId>
|
140 | 147 | <artifactId>kotlin-reflect</artifactId>
|
141 | 148 | </dependency>
|
142 | 149 | <dependency>
|
| 150 | + <!-- |
| 151 | + Depending on kotlinx-coroutines-core causes an ambiguous module reference warning. |
| 152 | + See https://github.com/Kotlin/kotlinx.coroutines/issues/3842 |
| 153 | + --> |
143 | 154 | <groupId>org.jetbrains.kotlinx</groupId>
|
144 |
| - <artifactId>kotlinx-coroutines-jdk8</artifactId> |
145 |
| - </dependency> |
146 |
| - <dependency> |
147 |
| - <groupId>org.jetbrains.kotlinx</groupId> |
148 |
| - <artifactId>kotlinx-coroutines-core</artifactId> |
| 155 | + <artifactId>kotlinx-coroutines-core-jvm</artifactId> |
149 | 156 | </dependency>
|
150 | 157 | <dependency>
|
151 | 158 | <groupId>org.jetbrains.kotlinx</groupId>
|
|
233 | 240 | <plugin>
|
234 | 241 | <groupId>org.codehaus.mojo</groupId>
|
235 | 242 | <artifactId>build-helper-maven-plugin</artifactId>
|
236 |
| - <version>3.3.0</version> |
| 243 | + <version>3.6.0</version> |
237 | 244 | <executions>
|
238 | 245 | <execution>
|
239 | 246 | <id>add-test-source</id>
|
|
277 | 284 | <plugin>
|
278 | 285 | <groupId>org.apache.maven.plugins</groupId>
|
279 | 286 | <artifactId>maven-compiler-plugin</artifactId>
|
280 |
| - <version>3.11.0</version> |
| 287 | + <version>3.13.0</version> |
281 | 288 | <configuration>
|
282 | 289 | <source>11</source>
|
283 | 290 | <target>11</target>
|
|
287 | 294 | <plugin>
|
288 | 295 | <groupId>org.apache.maven.plugins</groupId>
|
289 | 296 | <artifactId>maven-surefire-plugin</artifactId>
|
290 |
| - <version>3.0.0</version> |
| 297 | + <version>3.5.1</version> |
291 | 298 | <dependencies>
|
292 | 299 | <dependency>
|
293 | 300 | <groupId>org.apache.maven.surefire</groupId>
|
294 | 301 | <artifactId>surefire-junit4</artifactId>
|
295 |
| - <version>3.0.0</version> |
| 302 | + <version>3.5.1</version> |
296 | 303 | </dependency>
|
297 | 304 | </dependencies>
|
298 | 305 | <configuration>
|
|
304 | 311 | <plugin>
|
305 | 312 | <groupId>org.apache.maven.plugins</groupId>
|
306 | 313 | <artifactId>maven-jar-plugin</artifactId>
|
307 |
| - <version>3.3.0</version> |
| 314 | + <version>3.4.2</version> |
308 | 315 | <executions>
|
309 | 316 | <execution>
|
310 | 317 | <id>test-jar</id>
|
|
319 | 326 | <plugin>
|
320 | 327 | <groupId>org.apache.maven.plugins</groupId>
|
321 | 328 | <artifactId>maven-enforcer-plugin</artifactId>
|
322 |
| - <version>3.2.1</version> |
| 329 | + <version>3.5.0</version> |
323 | 330 | <executions>
|
324 | 331 | <execution>
|
325 | 332 | <id>enforce</id>
|
|
337 | 344 | <plugin>
|
338 | 345 | <groupId>org.sonatype.plugins</groupId>
|
339 | 346 | <artifactId>nexus-staging-maven-plugin</artifactId>
|
340 |
| - <version>1.6.13</version> |
| 347 | + <version>1.7.0</version> |
341 | 348 | <extensions>true</extensions>
|
342 | 349 | <configuration>
|
343 | 350 | <serverId>ossrh</serverId>
|
|
356 | 363 | <plugin>
|
357 | 364 | <groupId>org.apache.maven.plugins</groupId>
|
358 | 365 | <artifactId>maven-source-plugin</artifactId>
|
359 |
| - <version>3.2.1</version> |
| 366 | + <version>3.3.1</version> |
360 | 367 | <executions>
|
361 | 368 | <execution>
|
362 | 369 | <id>attach-sources</id>
|
|
370 | 377 | <plugin>
|
371 | 378 | <groupId>org.apache.maven.plugins</groupId>
|
372 | 379 | <artifactId>maven-javadoc-plugin</artifactId>
|
373 |
| - <version>3.5.0</version> |
| 380 | + <version>3.10.1</version> |
374 | 381 | <executions>
|
375 | 382 | <execution>
|
376 | 383 | <id>attach-javadocs</id>
|
|
383 | 390 | <plugin>
|
384 | 391 | <groupId>org.apache.maven.plugins</groupId>
|
385 | 392 | <artifactId>maven-gpg-plugin</artifactId>
|
386 |
| - <version>3.0.1</version> |
| 393 | + <version>3.2.7</version> |
387 | 394 | <executions>
|
388 | 395 | <execution>
|
389 | 396 | <id>sign-artifacts</id>
|
|
0 commit comments