Files
Christoph Strobl 213819fb47 Add smoke test for Spring Data Commons Web Support
Add tests to verify Jackson serialization of Page instances work using the PageModule.

See gh-228
2024-08-22 09:02:49 +02:00

26 lines
689 B
Groovy

plugins {
id "java"
id "org.springframework.boot"
id "org.springframework.aot.smoke-test"
id "org.graalvm.buildtools.native"
}
repositories {
mavenLocal()
}
dependencies {
implementation(enforcedPlatform(org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES))
implementation("org.springframework.boot:spring-boot-starter-web")
implementation("org.springframework.data:spring-data-commons")
testImplementation("org.springframework.boot:spring-boot-starter-test")
appTestImplementation(project(":aot-smoke-test-support"))
appTestImplementation("org.awaitility:awaitility:4.2.0")
}
aotSmokeTest {
webApplication = true
}