Browse Source

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
pull/46563/head
Stéphane Nicoll 5 months ago
parent
commit
855d9b0a91
  1. 3
      starter/spring-boot-starter-data-mongodb-reactive/build.gradle
  2. 3
      starter/spring-boot-starter-data-mongodb/build.gradle
  3. 2
      starter/spring-boot-starter-session-data-mongodb/build.gradle

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

@ -21,10 +21,9 @@ plugins { @@ -21,10 +21,9 @@ plugins {
description = "Starter for using MongoDB document-oriented database and Spring Data MongoDB Reactive"
dependencies {
api(project(":starter:spring-boot-starter"))
api(project(":starter:spring-boot-starter-mongodb"))
api(project(":module:spring-boot-data-mongodb"))
api(project(":module:spring-boot-mongodb"))
api(project(":module:spring-boot-reactor"))
api("org.mongodb:mongodb-driver-reactivestreams")

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

@ -21,8 +21,7 @@ plugins { @@ -21,8 +21,7 @@ plugins {
description = "Starter for using MongoDB document-oriented database and Spring Data MongoDB"
dependencies {
api(project(":starter:spring-boot-starter"))
api(project(":starter:spring-boot-starter-mongodb"))
api(project(":module:spring-boot-data-mongodb"))
api(project(":module:spring-boot-mongodb"))
}

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

@ -21,9 +21,7 @@ plugins { @@ -21,9 +21,7 @@ plugins {
description = "Starter for using Spring Session with Spring Data MongoDB"
dependencies {
api(project(":starter:spring-boot-starter"))
api(project(":starter:spring-boot-starter-data-mongodb"))
api(project(":module:spring-boot-session-data-mongodb"))
api(project(":module:spring-boot-data-mongodb"))
}

Loading…
Cancel
Save