From ba42c0b9ed5510df6c4a6973d5681cea2483ce69 Mon Sep 17 00:00:00 2001 From: Brian Clozel Date: Mon, 15 May 2023 14:54:27 +0200 Subject: [PATCH] Upgrade to Spring Boot 3.1.0-RC2 --- build.gradle | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index e0e93c16..b6ac4172 100644 --- a/build.gradle +++ b/build.gradle @@ -4,7 +4,7 @@ ext { moduleProjects = [project(":spring-graphql"), project(":spring-graphql-test")] springFrameworkVersion = "6.0.9" graphQlJavaVersion = "20.2" - springBootVersion = "3.1.0-M2" + springBootVersion = "3.1.0-RC2" } subprojects { @@ -13,6 +13,12 @@ subprojects { repositories { mavenCentral() + maven { + url "https://repo.spring.io/milestone" + content { + includeGroup "org.springframework.boot" + } + } if (version.contains('-')) { maven { url "https://repo.spring.io/milestone" } }