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

13 lines
362 B
Groovy

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