Skip to content

Commit 83fe435

Browse files
authored
Merge pull request #775 from graphql-java-kickstart/renovate/all-minor-patch
Update all non-major dependencies
2 parents 3554357 + 10451fc commit 83fe435

File tree

1 file changed

+18
-19
lines changed

1 file changed

+18
-19
lines changed

pom.xml

+18-19
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<java.version>11</java.version>
1717
<kotlin.version>2.0.20</kotlin.version>
1818
<kotlin-coroutines.version>1.9.0</kotlin-coroutines.version>
19-
<jackson.version>2.17.0</jackson.version>
19+
<jackson.version>2.18.0</jackson.version>
2020
<graphql-java.version>22.3</graphql-java.version>
2121
<reactive-streams.version>1.0.4</reactive-streams.version>
2222

@@ -63,31 +63,31 @@
6363
<dependency>
6464
<groupId>com.fasterxml</groupId>
6565
<artifactId>classmate</artifactId>
66-
<version>1.6.0</version>
66+
<version>1.7.0</version>
6767
</dependency>
6868
<dependency>
6969
<groupId>org.slf4j</groupId>
7070
<artifactId>slf4j-api</artifactId>
71-
<version>2.0.9</version>
71+
<version>2.0.16</version>
7272
</dependency>
7373
<dependency>
7474
<groupId>org.apache.commons</groupId>
7575
<artifactId>commons-lang3</artifactId>
76-
<version>3.14.0</version>
76+
<version>3.17.0</version>
7777
</dependency>
7878

7979
<!-- Optional for supporting Javassist proxies -->
8080
<dependency>
8181
<groupId>org.javassist</groupId>
8282
<artifactId>javassist</artifactId>
83-
<version>3.29.2-GA</version>
83+
<version>3.30.2-GA</version>
8484
<scope>provided</scope>
8585
</dependency>
8686
<!-- Optional for supporting Spring proxies -->
8787
<dependency>
8888
<groupId>org.springframework</groupId>
8989
<artifactId>spring-aop</artifactId>
90-
<version>5.3.31</version>
90+
<version>5.3.39</version>
9191
<scope>provided</scope>
9292
</dependency>
9393

@@ -100,7 +100,7 @@
100100
<dependency>
101101
<groupId>ch.qos.logback</groupId>
102102
<artifactId>logback-classic</artifactId>
103-
<version>1.3.14</version>
103+
<version>1.5.9</version>
104104
</dependency>
105105
<dependency>
106106
<groupId>javax.servlet</groupId>
@@ -115,7 +115,7 @@
115115
<dependency>
116116
<groupId>org.objenesis</groupId>
117117
<artifactId>objenesis</artifactId>
118-
<version>3.3</version>
118+
<version>3.4</version>
119119
</dependency>
120120
<dependency>
121121
<groupId>org.reactivestreams</groupId>
@@ -240,8 +240,7 @@
240240
<plugin>
241241
<groupId>org.codehaus.mojo</groupId>
242242
<artifactId>build-helper-maven-plugin</artifactId>
243-
<!-- keep at 3.4.0 for JitPack to work -->
244-
<version>3.4.0</version>
243+
<version>3.6.0</version>
245244
<executions>
246245
<execution>
247246
<id>add-test-source</id>
@@ -285,7 +284,7 @@
285284
<plugin>
286285
<groupId>org.apache.maven.plugins</groupId>
287286
<artifactId>maven-compiler-plugin</artifactId>
288-
<version>3.11.0</version>
287+
<version>3.13.0</version>
289288
<configuration>
290289
<source>11</source>
291290
<target>11</target>
@@ -295,12 +294,12 @@
295294
<plugin>
296295
<groupId>org.apache.maven.plugins</groupId>
297296
<artifactId>maven-surefire-plugin</artifactId>
298-
<version>3.2.2</version>
297+
<version>3.5.1</version>
299298
<dependencies>
300299
<dependency>
301300
<groupId>org.apache.maven.surefire</groupId>
302301
<artifactId>surefire-junit4</artifactId>
303-
<version>3.2.2</version>
302+
<version>3.5.1</version>
304303
</dependency>
305304
</dependencies>
306305
<configuration>
@@ -312,7 +311,7 @@
312311
<plugin>
313312
<groupId>org.apache.maven.plugins</groupId>
314313
<artifactId>maven-jar-plugin</artifactId>
315-
<version>3.3.0</version>
314+
<version>3.4.2</version>
316315
<executions>
317316
<execution>
318317
<id>test-jar</id>
@@ -327,7 +326,7 @@
327326
<plugin>
328327
<groupId>org.apache.maven.plugins</groupId>
329328
<artifactId>maven-enforcer-plugin</artifactId>
330-
<version>3.4.1</version>
329+
<version>3.5.0</version>
331330
<executions>
332331
<execution>
333332
<id>enforce</id>
@@ -345,7 +344,7 @@
345344
<plugin>
346345
<groupId>org.sonatype.plugins</groupId>
347346
<artifactId>nexus-staging-maven-plugin</artifactId>
348-
<version>1.6.13</version>
347+
<version>1.7.0</version>
349348
<extensions>true</extensions>
350349
<configuration>
351350
<serverId>ossrh</serverId>
@@ -364,7 +363,7 @@
364363
<plugin>
365364
<groupId>org.apache.maven.plugins</groupId>
366365
<artifactId>maven-source-plugin</artifactId>
367-
<version>3.3.0</version>
366+
<version>3.3.1</version>
368367
<executions>
369368
<execution>
370369
<id>attach-sources</id>
@@ -378,7 +377,7 @@
378377
<plugin>
379378
<groupId>org.apache.maven.plugins</groupId>
380379
<artifactId>maven-javadoc-plugin</artifactId>
381-
<version>3.6.3</version>
380+
<version>3.10.1</version>
382381
<executions>
383382
<execution>
384383
<id>attach-javadocs</id>
@@ -391,7 +390,7 @@
391390
<plugin>
392391
<groupId>org.apache.maven.plugins</groupId>
393392
<artifactId>maven-gpg-plugin</artifactId>
394-
<version>3.1.0</version>
393+
<version>3.2.7</version>
395394
<executions>
396395
<execution>
397396
<id>sign-artifacts</id>

0 commit comments

Comments
 (0)