2021-09-05 10:24:45 +00:00
|
|
|
dependencies {
|
|
|
|
compileOnly 'org.projectlombok:lombok'
|
|
|
|
|
|
|
|
// https://projectreactor.io/docs/core/release/reference/#debug-activate
|
|
|
|
annotationProcessor 'org.projectlombok:lombok'
|
2021-11-17 15:38:16 +00:00
|
|
|
implementation 'org.springframework.boot:spring-boot-starter-webflux'
|
2021-09-05 10:24:45 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
test {
|
|
|
|
useJUnitPlatform()
|
|
|
|
testLogging {
|
|
|
|
events "passed", "skipped", "failed"
|
|
|
|
}
|
2021-11-21 17:02:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
jar {
|
|
|
|
enabled = true
|
|
|
|
}
|
|
|
|
|
|
|
|
bootJar {
|
|
|
|
enabled = false
|
2021-09-05 10:24:45 +00:00
|
|
|
}
|