Skip to content

Commit 8d7f78d

Browse files
authored
Merge pull request #435 from AxonFramework/dependabot/maven/maven-dependencies-88b4143b36
Bump the maven-dependencies group across 1 directory with 14 updates
2 parents 355cf1f + 5e079e9 commit 8d7f78d

File tree

4 files changed

+40
-17
lines changed

4 files changed

+40
-17
lines changed

mongo-axon-example/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -86,11 +86,11 @@
8686
<plugins>
8787
<plugin>
8888
<artifactId>maven-clean-plugin</artifactId>
89-
<version>3.3.2</version>
89+
<version>3.4.0</version>
9090
</plugin>
9191
<plugin>
9292
<artifactId>maven-install-plugin</artifactId>
93-
<version>3.1.1</version>
93+
<version>3.1.2</version>
9494
</plugin>
9595
</plugins>
9696
</pluginManagement>

mongo-spring-boot-3-integrationtests/pom.xml

+28-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
3-
~ Copyright (c) 2010-2023. Axon Framework
3+
~ Copyright (c) 2010-2024. Axon Framework
44
~
55
~ Licensed under the Apache License, Version 2.0 (the "License");
66
~ you may not use this file except in compliance with the License.
@@ -20,7 +20,7 @@
2020
<parent>
2121
<groupId>org.springframework.boot</groupId>
2222
<artifactId>spring-boot-starter-parent</artifactId>
23-
<version>3.2.5</version>
23+
<version>3.3.1</version>
2424
<relativePath/>
2525
</parent>
2626
<modelVersion>4.0.0</modelVersion>
@@ -37,12 +37,15 @@
3737
<packaging>jar</packaging>
3838

3939
<properties>
40+
<!-- Main -->
4041
<axon.version>4.9.0</axon.version>
41-
<testcontainers.version>1.19.7</testcontainers.version>
42+
<mongo.driver.version>4.11.1</mongo.driver.version>
43+
<!-- Testing -->
44+
<testcontainers.version>1.19.8</testcontainers.version>
4245
<!-- Build / Plugin -->
4346
<jacoco-maven.version>0.8.11</jacoco-maven.version>
44-
<maven-jar.version>3.4.1</maven-jar.version>
45-
<maven-surefire.version>3.2.5</maven-surefire.version>
47+
<maven-jar.version>3.4.2</maven-jar.version>
48+
<maven-surefire.version>3.3.1</maven-surefire.version>
4649
</properties>
4750

4851
<dependencies>
@@ -83,6 +86,26 @@
8386
<dependency>
8487
<groupId>org.springframework.boot</groupId>
8588
<artifactId>spring-boot-starter-data-mongodb</artifactId>
89+
<exclusions>
90+
<exclusion>
91+
<groupId>org.mongodb</groupId>
92+
<artifactId>mongodb-driver-core</artifactId>
93+
</exclusion>
94+
<exclusion>
95+
<groupId>org.mongodb</groupId>
96+
<artifactId>mongodb-driver-sync</artifactId>
97+
</exclusion>
98+
</exclusions>
99+
</dependency>
100+
<dependency>
101+
<groupId>org.mongodb</groupId>
102+
<artifactId>mongodb-driver-core</artifactId>
103+
<version>${mongo.driver.version}</version>
104+
</dependency>
105+
<dependency>
106+
<groupId>org.mongodb</groupId>
107+
<artifactId>mongodb-driver-sync</artifactId>
108+
<version>${mongo.driver.version}</version>
86109
</dependency>
87110
<dependency>
88111
<groupId>org.springframework.boot</groupId>

mongo/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@
163163
<plugin>
164164
<groupId>org.apache.maven.plugins</groupId>
165165
<artifactId>maven-enforcer-plugin</artifactId>
166-
<version>3.4.1</version>
166+
<version>3.5.0</version>
167167
<executions>
168168
<execution>
169169
<id>enforce-banned-dependencies</id>

pom.xml

+9-9
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
<!-- Serialization -->
5959
<jackson.version>2.16.0</jackson.version>
6060
<!-- Spring -->
61-
<spring.version>5.3.34</spring.version>
61+
<spring.version>5.3.37</spring.version>
6262
<spring.boot.version>2.7.18</spring.boot.version>
6363
<spring.data.mongodb.version>3.4.18</spring.data.mongodb.version>
6464
<!-- Other -->
@@ -70,21 +70,21 @@
7070
<awaitility.version>4.2.0</awaitility.version>
7171
<junit.jupiter.version>5.10.1</junit.jupiter.version>
7272
<mockito.version>4.11.0</mockito.version>
73-
<testcontainers.version>1.19.7</testcontainers.version>
73+
<testcontainers.version>1.19.8</testcontainers.version>
7474
<!-- Build / Plugins -->
7575
<jacoco-maven.version>0.8.11</jacoco-maven.version>
7676
<maven-assembly.version>3.7.1</maven-assembly.version>
77-
<maven-clean.version>3.3.2</maven-clean.version>
77+
<maven-clean.version>3.4.0</maven-clean.version>
7878
<maven-compiler.version>3.13.0</maven-compiler.version>
7979
<maven-deploy.version>3.0.0</maven-deploy.version>
80-
<maven-enforcer.version>3.4.1</maven-enforcer.version>
80+
<maven-enforcer.version>3.5.0</maven-enforcer.version>
8181
<maven-gpg.version>3.1.0</maven-gpg.version>
82-
<maven-install.version>3.1.1</maven-install.version>
83-
<maven-jar.version>3.4.1</maven-jar.version>
84-
<maven-javadoc.version>3.6.3</maven-javadoc.version>
85-
<maven-release.version>3.0.1</maven-release.version>
82+
<maven-install.version>3.1.2</maven-install.version>
83+
<maven-jar.version>3.4.2</maven-jar.version>
84+
<maven-javadoc.version>3.7.0</maven-javadoc.version>
85+
<maven-release.version>3.1.0</maven-release.version>
8686
<maven-source.version>3.3.1</maven-source.version>
87-
<maven-surefire.version>3.2.5</maven-surefire.version>
87+
<maven-surefire.version>3.3.1</maven-surefire.version>
8888
<maven-resources.version>3.3.1</maven-resources.version>
8989
</properties>
9090

0 commit comments

Comments
 (0)