Skip to content

Commit b2f533f

Browse files
committed
fix: update dependency versions in pom.xml for improved compatibility and security
1 parent eedcc45 commit b2f533f

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

pom.xml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@
197197
<dependency>
198198
<groupId>org.mongodb</groupId>
199199
<artifactId>mongodb-driver-sync</artifactId>
200-
<version>5.3.1</version>
200+
<version>5.5.1</version>
201201
</dependency>
202202
<dependency>
203203
<groupId>io.undertow</groupId>
@@ -207,7 +207,7 @@
207207
<dependency>
208208
<groupId>org.json</groupId>
209209
<artifactId>json</artifactId>
210-
<version>20250107</version>
210+
<version>20250517</version>
211211
</dependency>
212212
<dependency>
213213
<groupId>com.google.guava</groupId>
@@ -217,17 +217,17 @@
217217
<dependency>
218218
<groupId>org.checkerframework</groupId>
219219
<artifactId>checker-qual</artifactId>
220-
<version>3.49.3</version>
220+
<version>3.49.4</version>
221221
</dependency>
222222
<dependency>
223223
<groupId>com.github.ben-manes.caffeine</groupId>
224224
<artifactId>caffeine</artifactId>
225-
<version>3.2.0</version>
225+
<version>3.2.1</version>
226226
</dependency>
227227
<dependency>
228228
<groupId>com.google.code.gson</groupId>
229229
<artifactId>gson</artifactId>
230-
<version>2.12.1</version>
230+
<version>2.13.1</version>
231231
</dependency>
232232
<dependency>
233233
<groupId>com.jayway.jsonpath</groupId>
@@ -252,12 +252,12 @@
252252
<dependency>
253253
<groupId>commons-jxpath</groupId>
254254
<artifactId>commons-jxpath</artifactId>
255-
<version>1.3</version>
255+
<version>1.4.0</version>
256256
</dependency>
257257
<dependency>
258258
<groupId>org.yaml</groupId>
259259
<artifactId>snakeyaml</artifactId>
260-
<version>2.3</version>
260+
<version>2.4</version>
261261
</dependency>
262262
<dependency>
263263
<groupId>ch.qos.logback</groupId>
@@ -282,17 +282,17 @@
282282
<dependency>
283283
<groupId>org.apache.tika</groupId>
284284
<artifactId>tika-core</artifactId>
285-
<version>3.1.0</version>
285+
<version>3.2.0</version>
286286
</dependency>
287287
<dependency>
288288
<groupId>io.dropwizard.metrics</groupId>
289289
<artifactId>metrics-core</artifactId>
290-
<version>4.2.30</version>
290+
<version>4.2.33</version>
291291
</dependency>
292292
<dependency>
293293
<groupId>io.dropwizard.metrics</groupId>
294294
<artifactId>metrics-jvm</artifactId>
295-
<version>4.2.30</version>
295+
<version>4.2.33</version>
296296
</dependency>
297297
<dependency>
298298
<groupId>io.prometheus</groupId>
@@ -312,7 +312,7 @@
312312
<dependency>
313313
<groupId>io.github.classgraph</groupId>
314314
<artifactId>classgraph</artifactId>
315-
<version>4.8.179</version>
315+
<version>4.8.180</version>
316316
</dependency>
317317
<dependency>
318318
<groupId>org.graalvm.polyglot</groupId>
@@ -367,7 +367,7 @@
367367
<dependency>
368368
<groupId>org.junit.jupiter</groupId>
369369
<artifactId>junit-jupiter</artifactId>
370-
<version>5.11.4</version>
370+
<version>5.12.2</version>
371371
<scope>test</scope>
372372
</dependency>
373373
<dependency>
@@ -385,7 +385,7 @@
385385
<dependency>
386386
<groupId>org.mockito</groupId>
387387
<artifactId>mockito-core</artifactId>
388-
<version>5.15.2</version>
388+
<version>5.18.0</version>
389389
<scope>test</scope>
390390
</dependency>
391391
<dependency>
@@ -480,7 +480,7 @@
480480
<plugin>
481481
<groupId>org.apache.maven.plugins</groupId>
482482
<artifactId>maven-compiler-plugin</artifactId>
483-
<version>3.13.0</version>
483+
<version>3.14.0</version>
484484
<configuration>
485485
<debug>true</debug>
486486
<compilerArgument>-Xlint:unchecked</compilerArgument>
@@ -491,7 +491,7 @@
491491
<plugin>
492492
<groupId>org.apache.maven.plugins</groupId>
493493
<artifactId>maven-surefire-plugin</artifactId>
494-
<version>3.5.2</version>
494+
<version>3.5.3</version>
495495
<configuration>
496496
<skipTests>${skipUTs}</skipTests>
497497
<excludes>
@@ -504,7 +504,7 @@
504504
<plugin>
505505
<groupId>org.apache.maven.plugins</groupId>
506506
<artifactId>maven-failsafe-plugin</artifactId>
507-
<version>3.5.2</version>
507+
<version>3.5.3</version>
508508
<configuration>
509509
<skipTests>${skipTests}</skipTests>
510510
<skipITs>${skipITs}</skipITs>
@@ -530,12 +530,12 @@
530530
<plugin>
531531
<groupId>io.fabric8</groupId>
532532
<artifactId>docker-maven-plugin</artifactId>
533-
<version>0.45.1</version>
533+
<version>0.46.0</version>
534534
</plugin>
535535
<plugin>
536536
<groupId>org.graalvm.buildtools</groupId>
537537
<artifactId>native-maven-plugin</artifactId>
538-
<version>0.10.4</version>
538+
<version>0.10.6</version>
539539
</plugin>
540540
<plugin>
541541
<groupId>org.apache.maven.plugins</groupId>

0 commit comments

Comments
 (0)