You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
568 B
Groovy
17 lines
568 B
Groovy
5 years ago
|
plugins {
|
||
|
id "java"
|
||
|
id "org.springframework.boot.conventions"
|
||
|
}
|
||
|
|
||
|
description = "Spring Boot Data R2DBC smoke test"
|
||
|
|
||
|
dependencies {
|
||
|
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-data-r2dbc"))
|
||
|
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-webflux"))
|
||
|
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-actuator"))
|
||
|
|
||
|
runtimeOnly("io.r2dbc:r2dbc-h2")
|
||
|
|
||
|
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
|
||
|
}
|