spring-boot/spring-boot-project/spring-boot-starters/spring-boot-starter-data-couchbase-reactive/build.gradle
2024-04-09 09:07:13 +01:00

14 lines
410 B
Groovy

plugins {
id "org.springframework.boot.starter"
}
description = "Starter for using Couchbase document-oriented database and Spring Data Couchbase Reactive"
dependencies {
api(project(":spring-boot-project:spring-boot-starters:spring-boot-starter"))
api("io.projectreactor:reactor-core")
api("org.springframework.data:spring-data-couchbase") {
exclude group: "javax.inject", module: "javax.inject"
}
}