2024-09-24 14:26:32 -07:00

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")
}