From cc3021d2df11b0631af1075b95efb63466b237ab Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Tue, 8 Mar 2022 12:49:37 +0100 Subject: [PATCH] Start building against Spring Framework 6.0.0-M3 snapshots See gh-29957 --- spring-boot-project/spring-boot-dependencies/build.gradle | 2 +- .../boot/context/properties/bind/BindableTests.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-boot-project/spring-boot-dependencies/build.gradle b/spring-boot-project/spring-boot-dependencies/build.gradle index a13abfc6e6..67ae0043f5 100644 --- a/spring-boot-project/spring-boot-dependencies/build.gradle +++ b/spring-boot-project/spring-boot-dependencies/build.gradle @@ -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" diff --git a/spring-boot-project/spring-boot/src/test/java/org/springframework/boot/context/properties/bind/BindableTests.java b/spring-boot-project/spring-boot/src/test/java/org/springframework/boot/context/properties/bind/BindableTests.java index de531cf9d4..4fcebdf11c 100644 --- a/spring-boot-project/spring-boot/src/test/java/org/springframework/boot/context/properties/bind/BindableTests.java +++ b/spring-boot-project/spring-boot/src/test/java/org/springframework/boot/context/properties/bind/BindableTests.java @@ -146,7 +146,7 @@ class BindableTests { Bindable bindable = Bindable.of(String.class).withExistingValue("foo").withAnnotations(annotation); assertThat(bindable.toString()) .contains("type = java.lang.String, value = 'provided', annotations = array[" - + "@org.springframework.boot.context.properties.bind.BindableTests$TestAnnotation()]"); + + "@org.springframework.boot.context.properties.bind.BindableTests.TestAnnotation()]"); } @Test