From db0af4bd555af4691c7b35ba42f0305eccaf1b3b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Nov 2023 10:37:17 +0100 Subject: [PATCH] Bump org.springframework.boot from 3.1.5 to 3.2.0 in /springboot-app (#72) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Bump org.springframework.boot from 3.1.5 to 3.2.0 in /springboot-app Bumps [org.springframework.boot](https://github.com/spring-projects/spring-boot) from 3.1.5 to 3.2.0. - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v3.1.5...v3.2.0) --- updated-dependencies: - dependency-name: org.springframework.boot dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] * Update spring-cloud * Use variable * Update build.gradle.kts --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Roger ViƱas Alcon --- springboot-app/build.gradle.kts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/springboot-app/build.gradle.kts b/springboot-app/build.gradle.kts index 7edc9ac..a397d06 100644 --- a/springboot-app/build.gradle.kts +++ b/springboot-app/build.gradle.kts @@ -1,5 +1,5 @@ plugins { - id("org.springframework.boot") version "3.1.5" + id("org.springframework.boot") version "3.2.0" id("io.spring.dependency-management") version "1.1.4" kotlin("jvm") version "1.9.21" kotlin("plugin.spring") version "1.9.21" @@ -11,9 +11,10 @@ java.sourceCompatibility = JavaVersion.VERSION_21 repositories { mavenCentral() + maven { url = uri("https://repo.spring.io/milestone") } } -extra["springCloudVersion"] = "2022.0.4" +val springCloudVersion = "2023.0.0-RC1" dependencies { implementation("org.springframework.boot:spring-boot-starter-webflux") @@ -41,7 +42,7 @@ dependencies { dependencyManagement { imports { - mavenBom("org.springframework.cloud:spring-cloud-dependencies:${property("springCloudVersion")}") + mavenBom("org.springframework.cloud:spring-cloud-dependencies:$springCloudVersion") } }