Skip to content

Commit 855d9b0

Browse files
committed
Restore proper usage of MongoDB starters
This could be that a change must be made in spring-boot-mongodb itself but this helps to fix the build. See gh-46548
1 parent f278b19 commit 855d9b0

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

starter/spring-boot-starter-data-mongodb-reactive/build.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,9 @@ plugins {
2121
description = "Starter for using MongoDB document-oriented database and Spring Data MongoDB Reactive"
2222

2323
dependencies {
24-
api(project(":starter:spring-boot-starter"))
24+
api(project(":starter:spring-boot-starter-mongodb"))
2525

2626
api(project(":module:spring-boot-data-mongodb"))
27-
api(project(":module:spring-boot-mongodb"))
2827
api(project(":module:spring-boot-reactor"))
2928

3029
api("org.mongodb:mongodb-driver-reactivestreams")

starter/spring-boot-starter-data-mongodb/build.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ plugins {
2121
description = "Starter for using MongoDB document-oriented database and Spring Data MongoDB"
2222

2323
dependencies {
24-
api(project(":starter:spring-boot-starter"))
24+
api(project(":starter:spring-boot-starter-mongodb"))
2525

2626
api(project(":module:spring-boot-data-mongodb"))
27-
api(project(":module:spring-boot-mongodb"))
2827
}

starter/spring-boot-starter-session-data-mongodb/build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,7 @@ plugins {
2121
description = "Starter for using Spring Session with Spring Data MongoDB"
2222

2323
dependencies {
24-
api(project(":starter:spring-boot-starter"))
2524
api(project(":starter:spring-boot-starter-data-mongodb"))
2625

2726
api(project(":module:spring-boot-session-data-mongodb"))
28-
api(project(":module:spring-boot-data-mongodb"))
2927
}

0 commit comments

Comments
 (0)