Skip to content

Commit d59845f

Browse files
Update all non-major dependencies
1 parent 3554357 commit d59845f

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

pom.xml

+18-18
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>
@@ -241,7 +241,7 @@
241241
<groupId>org.codehaus.mojo</groupId>
242242
<artifactId>build-helper-maven-plugin</artifactId>
243243
<!-- keep at 3.4.0 for JitPack to work -->
244-
<version>3.4.0</version>
244+
<version>3.6.0</version>
245245
<executions>
246246
<execution>
247247
<id>add-test-source</id>
@@ -285,7 +285,7 @@
285285
<plugin>
286286
<groupId>org.apache.maven.plugins</groupId>
287287
<artifactId>maven-compiler-plugin</artifactId>
288-
<version>3.11.0</version>
288+
<version>3.13.0</version>
289289
<configuration>
290290
<source>11</source>
291291
<target>11</target>
@@ -295,12 +295,12 @@
295295
<plugin>
296296
<groupId>org.apache.maven.plugins</groupId>
297297
<artifactId>maven-surefire-plugin</artifactId>
298-
<version>3.2.2</version>
298+
<version>3.5.1</version>
299299
<dependencies>
300300
<dependency>
301301
<groupId>org.apache.maven.surefire</groupId>
302302
<artifactId>surefire-junit4</artifactId>
303-
<version>3.2.2</version>
303+
<version>3.5.1</version>
304304
</dependency>
305305
</dependencies>
306306
<configuration>
@@ -312,7 +312,7 @@
312312
<plugin>
313313
<groupId>org.apache.maven.plugins</groupId>
314314
<artifactId>maven-jar-plugin</artifactId>
315-
<version>3.3.0</version>
315+
<version>3.4.2</version>
316316
<executions>
317317
<execution>
318318
<id>test-jar</id>
@@ -327,7 +327,7 @@
327327
<plugin>
328328
<groupId>org.apache.maven.plugins</groupId>
329329
<artifactId>maven-enforcer-plugin</artifactId>
330-
<version>3.4.1</version>
330+
<version>3.5.0</version>
331331
<executions>
332332
<execution>
333333
<id>enforce</id>
@@ -345,7 +345,7 @@
345345
<plugin>
346346
<groupId>org.sonatype.plugins</groupId>
347347
<artifactId>nexus-staging-maven-plugin</artifactId>
348-
<version>1.6.13</version>
348+
<version>1.7.0</version>
349349
<extensions>true</extensions>
350350
<configuration>
351351
<serverId>ossrh</serverId>
@@ -364,7 +364,7 @@
364364
<plugin>
365365
<groupId>org.apache.maven.plugins</groupId>
366366
<artifactId>maven-source-plugin</artifactId>
367-
<version>3.3.0</version>
367+
<version>3.3.1</version>
368368
<executions>
369369
<execution>
370370
<id>attach-sources</id>
@@ -378,7 +378,7 @@
378378
<plugin>
379379
<groupId>org.apache.maven.plugins</groupId>
380380
<artifactId>maven-javadoc-plugin</artifactId>
381-
<version>3.6.3</version>
381+
<version>3.10.1</version>
382382
<executions>
383383
<execution>
384384
<id>attach-javadocs</id>
@@ -391,7 +391,7 @@
391391
<plugin>
392392
<groupId>org.apache.maven.plugins</groupId>
393393
<artifactId>maven-gpg-plugin</artifactId>
394-
<version>3.1.0</version>
394+
<version>3.2.7</version>
395395
<executions>
396396
<execution>
397397
<id>sign-artifacts</id>

0 commit comments

Comments
 (0)