Skip to content

Commit

Permalink
Update spring-cloud (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
rogervinas authored Nov 28, 2023
1 parent daa0f4f commit 708f02b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
![Java](https://img.shields.io/badge/Java-21-blue?labelColor=black)
![Kotlin](https://img.shields.io/badge/Kotlin-1.9.21-blue?labelColor=black)
![SpringBoot](https://img.shields.io/badge/SpringBoot-3.2.0-blue?labelColor=black)
![SpringCloudStream](https://img.shields.io/badge/SpringCloudStream-4.0.4-blue?labelColor=black)
![SpringCloudStream](https://img.shields.io/badge/SpringCloudStream-4.1.0-RC1-blue?labelColor=black)

# Spring Cloud Stream & Kafka binder step by step

Expand Down
5 changes: 3 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,10 @@ java.targetCompatibility = 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-web")
Expand All @@ -37,7 +38,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 708f02b

Please sign in to comment.