Skip to content

Commit

Permalink
Merge pull request #271 from tomorrow-one/spring-6.1-boot-3.2
Browse files Browse the repository at this point in the history
Upgrade to Spring 6.1 and Spring Boot 3.2
  • Loading branch information
danielrehmann authored Jan 4, 2024
2 parents 3d90d2d + a554cce commit 9be4e49
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion commons/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// the version is set in parent/root build.gradle.kts

dependencies {
val springVersion = "6.0.13"
val springVersion = "6.1.2"

"protobufSupportImplementation"("com.google.protobuf:protobuf-java:${rootProject.extra["protobufVersion"]}")
implementation("org.apache.kafka:kafka-clients:3.6.1")
Expand Down
12 changes: 8 additions & 4 deletions outbox-kafka-spring-reactive/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@

// the version is set in parent/root build.gradle.kts

tasks.withType<JavaCompile> {
options.compilerArgs.addAll(listOf("-parameters"))
}

dependencies {
val springVersion = "6.0.13"
val springDataVersion = "3.1.5"
val springVersion = "6.1.2"
val springDataVersion = "3.2.1"
val kafkaVersion = "3.6.1"
val springKafkaVersion = "3.0.12"
val testcontainersVersion = "1.19.3"
Expand All @@ -12,7 +16,7 @@ dependencies {
implementation("org.springframework:spring-context:$springVersion")

implementation("org.springframework.data:spring-data-relational:$springDataVersion")
implementation("org.springframework.data:spring-data-r2dbc:3.1.5")
implementation("org.springframework.data:spring-data-r2dbc:3.2.1")
implementation("org.springframework:spring-r2dbc:$springVersion")
implementation("org.postgresql:r2dbc-postgresql:1.0.3.RELEASE")
implementation("org.apache.kafka:kafka-clients:$kafkaVersion")
Expand All @@ -23,7 +27,7 @@ dependencies {
implementation("javax.annotation:javax.annotation-api:1.3.2")

// testing
testImplementation("org.springframework.boot:spring-boot-autoconfigure:3.1.5")
testImplementation("org.springframework.boot:spring-boot-autoconfigure:3.2.1")
testImplementation("org.springframework:spring-test:$springVersion")
testImplementation("io.projectreactor:reactor-test:3.6.1")

Expand Down
2 changes: 1 addition & 1 deletion outbox-kafka-spring/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// the version is set in parent/root build.gradle.kts

dependencies {
val springVersion = "6.0.13"
val springVersion = "6.1.2"
val kafkaVersion = "3.6.1"
val springKafkaVersion = "3.0.12"
val log4jVersion = "2.22.0"
Expand Down

0 comments on commit 9be4e49

Please sign in to comment.