Start building against Spring Framework 6.0.0-M3 snapshots

See gh-29957
This commit is contained in:
Stephane Nicoll 2022-03-08 12:49:37 +01:00
parent 0a81c238c2
commit cc3021d2df
2 changed files with 2 additions and 2 deletions

View File

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

View File

@ -146,7 +146,7 @@ class BindableTests {
Bindable<String> bindable = Bindable.of(String.class).withExistingValue("foo").withAnnotations(annotation);
assertThat(bindable.toString())
.contains("type = java.lang.String, value = 'provided', annotations = array<Annotation>["
+ "@org.springframework.boot.context.properties.bind.BindableTests$TestAnnotation()]");
+ "@org.springframework.boot.context.properties.bind.BindableTests.TestAnnotation()]");
}
@Test