23 lines
750 B
Groovy
23 lines
750 B
Groovy
plugins {
|
|
id "java"
|
|
id "org.springframework.boot"
|
|
id "org.springframework.aot.smoke-test"
|
|
id "org.graalvm.buildtools.native"
|
|
}
|
|
|
|
dependencies {
|
|
implementation(enforcedPlatform(org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES))
|
|
implementation("org.springframework.boot:spring-boot-starter-web")
|
|
implementation("org.springframework.security:spring-security-oauth2-authorization-server:1.0.11-SNAPSHOT")
|
|
|
|
testImplementation("org.springframework.boot:spring-boot-starter-test")
|
|
testImplementation("org.springframework.security:spring-security-test")
|
|
|
|
appTestImplementation("com.fasterxml.jackson.core:jackson-databind")
|
|
appTestImplementation(project(":aot-smoke-test-support"))
|
|
}
|
|
|
|
aotSmokeTest {
|
|
webApplication = true
|
|
}
|