22 lines
631 B
Groovy
22 lines
631 B
Groovy
plugins {
|
|
id "java"
|
|
id "org.springframework.boot"
|
|
id "org.springframework.lifecycle.smoke-test"
|
|
}
|
|
|
|
dependencies {
|
|
implementation(platform(org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES))
|
|
implementation("org.springframework.boot:spring-boot-starter-webflux")
|
|
implementation("org.springframework.boot:spring-boot-starter-security")
|
|
implementation("org.crac:crac")
|
|
implementation(project(":lifecycle-listener"))
|
|
|
|
testImplementation("org.springframework.boot:spring-boot-starter-test")
|
|
|
|
appTestImplementation(project(":lifecycle-smoke-test-support"))
|
|
}
|
|
|
|
lifecycleSmokeTest {
|
|
webApplication = true
|
|
}
|