Upgrade to Spring Boot 3.1.0-RC2

This commit is contained in:
Brian Clozel
2023-05-15 14:54:27 +02:00
parent 79ddfe0c47
commit ba42c0b9ed

View File

@@ -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" }
}