Skip to content

Commit

Permalink
Bump org.springframework.boot from 3.1.5 to 3.2.0 in /springboot-app (#…
Browse files Browse the repository at this point in the history
…72)

* 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](spring-projects/spring-boot@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] <support@github.com>

* Update spring-cloud

* Use variable

* Update build.gradle.kts

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Roger Viñas Alcon <roger.vinas@fastzink.com>
  • Loading branch information
dependabot[bot] and rogervinas authored Nov 27, 2023
1 parent 470db1b commit db0af4b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions springboot-app/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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")
Expand Down Expand Up @@ -41,7 +42,7 @@ dependencies {

dependencyManagement {
imports {
mavenBom("org.springframework.cloud:spring-cloud-dependencies:${property("springCloudVersion")}")
mavenBom("org.springframework.cloud:spring-cloud-dependencies:$springCloudVersion")
}
}

Expand Down

0 comments on commit db0af4b

Please sign in to comment.