13 lines
405 B
Groovy
13 lines
405 B
Groovy
plugins {
|
|
id "java"
|
|
}
|
|
|
|
description = "Spring Boot Actuator non-web smoke test"
|
|
|
|
dependencies {
|
|
annotationProcessor(project(":spring-boot-project:spring-boot-tools:spring-boot-configuration-processor"))
|
|
|
|
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-actuator"))
|
|
|
|
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
|
|
} |