Skip to content

Commit 833ef8f

Browse files
committed
Downgrade Spring Boot to 3.5.3 for compatibility reasons
- Redis OM to 1.0.0 - Add constraints for `lettucemod` in test dependencies.
1 parent 9d86582 commit 833ef8f

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

build.gradle.kts

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ plugins {
99
val kotlinVersion = "2.0.21"
1010
kotlin("jvm") version kotlinVersion
1111
id("com.diffplug.spotless") version "7.2.1"
12-
id("org.springframework.boot") version "3.5.5" apply false
12+
id("org.springframework.boot") version "3.5.3" apply false
1313
id("io.gitlab.arturbosch.detekt") version "1.23.8"
1414
id("pl.allegro.tech.build.axion-release") version "1.20.1"
1515
id("org.jetbrains.kotlinx.kover") version "0.9.1"
@@ -159,7 +159,7 @@ val jacksonAnnotationsVersion = "2.20"
159159
val jacksonDatabindVersion = "2.20.0"
160160
val jacksonKotlinVersion = "2.20.0"
161161
val springWebVersion = "6.2.10"
162-
val springBootVersion = "3.5.5"
162+
val springBootVersion = "3.5.3"
163163
val bouncyCastleJdk18Version = "1.81"
164164

165165
// Implementation
@@ -171,7 +171,7 @@ val springDocVersion = "2.8.12"
171171
val springOauthVersion = "6.5.3"
172172
val servletApiVersion = "6.1.0"
173173
val tikaVersion = "3.2.2"
174-
val redisOMVersion = "0.9.10"
174+
val redisOMVersion = "1.0.0"
175175
val kotlinCoroutinesCoreVersion = "1.10.2"
176176

177177
// Checks
@@ -247,7 +247,9 @@ dependencies {
247247

248248
implementation("org.springframework.boot:spring-boot-starter-test")
249249
implementation(
250-
"com.redis.testcontainers:testcontainers-redis-junit:${testContainersRedisVersion}")
250+
"com.redis.testcontainers:testcontainers-redis-junit:${testContainersRedisVersion}") {
251+
constraints { implementation("com.redis:lettucemod:4.4.0") }
252+
}
251253
implementation("org.testcontainers:postgresql:${testContainersPostgreSQLVersion}")
252254
implementation("org.testcontainers:localstack:${testContainersLocalStackVersion}")
253255

0 commit comments

Comments
 (0)