Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the dependencies group across 1 directory with 8 updates #249

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions springboot-app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ import org.gradle.api.tasks.testing.logging.TestLogEvent.PASSED
import org.gradle.api.tasks.testing.logging.TestLogEvent.SKIPPED

plugins {
id("org.springframework.boot") version "3.3.5"
id("org.springframework.boot") version "3.4.0"
id("io.spring.dependency-management") version "1.1.6"
kotlin("jvm") version "2.0.21"
kotlin("plugin.spring") version "2.0.21"
id("org.jlleitschuh.gradle.ktlint") version "12.1.1"
kotlin("jvm") version "2.1.0"
kotlin("plugin.spring") version "2.1.0"
id("org.jlleitschuh.gradle.ktlint") version "12.1.2"
}

group = "org.rogervinas"
Expand All @@ -17,8 +17,8 @@ repositories {
mavenCentral()
}

val springCloudVersion = "2023.0.3"
val flywayVersion = "10.21.0"
val springCloudVersion = "2024.0.0"
val flywayVersion = "11.1.0"

dependencies {
implementation("org.springframework.boot:spring-boot-starter-webflux")
Expand All @@ -38,7 +38,7 @@ dependencies {
testImplementation("org.springframework.boot:spring-boot-starter-test")
testImplementation("io.projectreactor:reactor-test")

testImplementation("org.testcontainers:junit-jupiter:1.20.3")
testImplementation("org.testcontainers:junit-jupiter:1.20.4")
testImplementation("org.assertj:assertj-core:3.26.3")
}

Expand Down
Loading