Start building against Spring Framework 6.0.0-M5 snapshots

See gh-31241
This commit is contained in:
Stephane Nicoll 2022-06-02 15:58:29 +02:00
parent 13fba65638
commit 0dbcb5f6d3
2 changed files with 4 additions and 1 deletions

View File

@ -1381,7 +1381,7 @@ bom {
]
}
}
library("Spring Framework", "6.0.0-M4") {
library("Spring Framework", "6.0.0-SNAPSHOT") {
group("org.springframework") {
imports = [
"spring-framework-bom"

View File

@ -46,6 +46,8 @@ public class AotGenerateTests {
"reflect-config.json"),
Path.of("META-INF", "native-image", "org.springframework.boot.maven.it", "aot",
"resource-config.json"),
Path.of("META-INF", "native-image", "org.springframework.boot.maven.it", "aot",
"proxy-config.json"),
Path.of("META-INF", "native-image", "org.springframework.boot.maven.it", "aot",
"native-image.properties"));
});
@ -67,6 +69,7 @@ public class AotGenerateTests {
assertThat(collectRelativePaths(classesDirectory)).contains(
Path.of("org.springframework.boot.maven.it", "aot", "reflect-config.json"),
Path.of("org.springframework.boot.maven.it", "aot", "resource-config.json"),
Path.of("org.springframework.boot.maven.it", "aot", "proxy-config.json"),
Path.of("org.springframework.boot.maven.it", "aot", "native-image.properties"));
});
}