13 lines
381 B
Groovy
13 lines
381 B
Groovy
plugins {
|
|
id "java"
|
|
}
|
|
|
|
description = "Spring Boot profile smoke test"
|
|
|
|
dependencies {
|
|
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-web"))
|
|
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-webflux"))
|
|
|
|
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
|
|
}
|