2020-05-13 21:54:25 +08:00
|
|
|
description = "Spring R2DBC"
|
|
|
|
|
|
|
|
apply plugin: "kotlin"
|
|
|
|
|
|
|
|
dependencies {
|
2021-05-22 03:16:30 +08:00
|
|
|
api(project(":spring-beans"))
|
|
|
|
api(project(":spring-core"))
|
|
|
|
api(project(":spring-tx"))
|
|
|
|
api("io.r2dbc:r2dbc-spi")
|
|
|
|
api("io.projectreactor:reactor-core")
|
2020-05-13 21:54:25 +08:00
|
|
|
optional("org.jetbrains.kotlin:kotlin-reflect")
|
|
|
|
optional("org.jetbrains.kotlin:kotlin-stdlib")
|
|
|
|
optional("org.jetbrains.kotlinx:kotlinx-coroutines-core")
|
|
|
|
optional("org.jetbrains.kotlinx:kotlinx-coroutines-reactor")
|
2021-05-22 03:16:30 +08:00
|
|
|
testImplementation(testFixtures(project(":spring-beans")))
|
|
|
|
testImplementation(testFixtures(project(":spring-core")))
|
|
|
|
testImplementation(testFixtures(project(":spring-context")))
|
|
|
|
testImplementation("io.projectreactor:reactor-test")
|
|
|
|
testImplementation("io.r2dbc:r2dbc-h2")
|
2022-02-05 04:09:02 +08:00
|
|
|
testImplementation("io.r2dbc:r2dbc-spi-test:0.9.1.RELEASE") {
|
2021-05-12 19:43:36 +08:00
|
|
|
exclude group: "org.springframework", module: "spring-jdbc"
|
|
|
|
}
|
2020-05-13 21:54:25 +08:00
|
|
|
}
|