15 lines
512 B
Groovy
15 lines
512 B
Groovy
plugins {
|
|
id "java"
|
|
}
|
|
|
|
description = "Spring Boot RSocket smoke test"
|
|
|
|
dependencies {
|
|
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-rsocket"))
|
|
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-security"))
|
|
implementation("org.springframework.security:spring-security-rsocket")
|
|
|
|
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
|
|
testImplementation("io.projectreactor:reactor-test")
|
|
}
|