26 lines
922 B
Groovy
26 lines
922 B
Groovy
plugins {
|
|
id "java-library"
|
|
id "org.springframework.boot.auto-configuration"
|
|
id "org.springframework.boot.deployed"
|
|
id "org.springframework.boot.optional-dependencies"
|
|
}
|
|
|
|
description = "Spring Boot Data MongoDB"
|
|
|
|
dependencies {
|
|
api(project(":spring-boot-project:spring-boot"))
|
|
api(project(":spring-boot-project:spring-boot-mongodb"))
|
|
api("org.springframework.data:spring-data-mongodb")
|
|
|
|
optional(project(":spring-boot-project:spring-boot-autoconfigure"))
|
|
optional("io.projectreactor:reactor-core")
|
|
optional("org.mongodb:mongodb-driver-reactivestreams")
|
|
optional("org.mongodb:mongodb-driver-sync")
|
|
|
|
testImplementation(project(":spring-boot-project:spring-boot-test"))
|
|
testImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support"))
|
|
testImplementation(testFixtures(project(":spring-boot-project:spring-boot-autoconfigure")))
|
|
|
|
testRuntimeOnly("ch.qos.logback:logback-classic")
|
|
}
|