From 3e277a28b4f7ab83e027eec955422d6126ce72ff Mon Sep 17 00:00:00 2001 From: Bartosz Markowski Date: Mon, 7 Apr 2025 11:40:06 +0200 Subject: [PATCH 1/2] Add missing dependency management for MongoDB See gh-45018 Signed-off-by: Bartosz Markowski --- spring-boot-project/spring-boot-dependencies/build.gradle | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-dependencies/build.gradle b/spring-boot-project/spring-boot-dependencies/build.gradle index bc17cd199ef..5f924cd3430 100644 --- a/spring-boot-project/spring-boot-dependencies/build.gradle +++ b/spring-boot-project/spring-boot-dependencies/build.gradle @@ -1456,10 +1456,12 @@ bom { modules = [ "bson", "bson-record-codec", + "bson-kotlin", "mongodb-driver-core", "mongodb-driver-legacy", "mongodb-driver-reactivestreams", - "mongodb-driver-sync" + "mongodb-driver-sync", + "mongodb-driver-kotlin-coroutine" ] } links { From 6d3686451b561a63d8d08d31773b085006896142 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Nicoll?= Date: Fri, 11 Apr 2025 10:29:26 +0200 Subject: [PATCH 2/2] Polish "Add missing dependency management for MongoDB" See gh-45018 --- spring-boot-project/spring-boot-dependencies/build.gradle | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spring-boot-project/spring-boot-dependencies/build.gradle b/spring-boot-project/spring-boot-dependencies/build.gradle index 5f924cd3430..8ba39a374f0 100644 --- a/spring-boot-project/spring-boot-dependencies/build.gradle +++ b/spring-boot-project/spring-boot-dependencies/build.gradle @@ -1455,13 +1455,13 @@ bom { group("org.mongodb") { modules = [ "bson", - "bson-record-codec", "bson-kotlin", + "bson-record-codec", "mongodb-driver-core", + "mongodb-driver-kotlin-coroutine", "mongodb-driver-legacy", "mongodb-driver-reactivestreams", - "mongodb-driver-sync", - "mongodb-driver-kotlin-coroutine" + "mongodb-driver-sync" ] } links {