28 lines
820 B
Groovy
28 lines
820 B
Groovy
plugins {
|
|
id 'java'
|
|
id 'org.springframework.boot'
|
|
id 'org.springframework.aot.smoke-test'
|
|
id 'org.graalvm.buildtools.native'
|
|
}
|
|
|
|
ext {
|
|
set('springCloudVersion', "2022.0.0-SNAPSHOT")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(platform(org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES))
|
|
implementation(platform("org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}"))
|
|
implementation("org.springframework.boot:spring-boot-starter")
|
|
implementation("org.springframework.cloud:spring-cloud-starter-task")
|
|
runtimeOnly("com.h2database:h2")
|
|
|
|
testImplementation("org.springframework.boot:spring-boot-starter-test")
|
|
|
|
aotSmokeTestImplementation(project(":aot-smoke-test-support"))
|
|
aotSmokeTestImplementation("org.awaitility:awaitility:4.2.0")
|
|
}
|
|
|
|
aotSmokeTest {
|
|
webApplication = true
|
|
}
|