Merge branch '3.1.x' into 3.2.x

This commit is contained in:
Andy Wilkinson
2024-11-06 08:31:01 +00:00
2 changed files with 9 additions and 1 deletions

View File

@@ -8,7 +8,7 @@ plugins {
dependencies {
implementation(platform(org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES))
implementation("org.springframework.boot:spring-boot-starter-jdbc")
implementation("org.flywaydb:flyway-core:10.12.0")
implementation("org.flywaydb:flyway-core:10.15.0")
runtimeOnly("com.h2database:h2")
testImplementation("org.springframework.boot:spring-boot-starter-test")

View File

@@ -16,3 +16,11 @@ dependencies {
appTestImplementation(project(":aot-smoke-test-support"))
appTestImplementation("org.awaitility:awaitility:4.2.0")
}
aotSmokeTest {
nativeAppTest {
expectedToFail {
becauseOf "https://github.com/oracle/graalvm-reachability-metadata/pull/560"
}
}
}