Skip to content

Commit 2efb3cf

Browse files
committed
Downgrade springBootVersion to 3.5.3 for compatibility reasons
- upgrade `redisOmSpringVersion` to `1.0.0` - Add version constraint for `lettucemod` in test dependencies.
1 parent 07b0141 commit 2efb3cf

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

build.gradle.kts

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ plugins {
3030
kotlin("plugin.spring") version kotlinVersion apply false
3131
id("pl.allegro.tech.build.axion-release") version "1.20.1"
3232
id("com.diffplug.spotless") version "7.2.1"
33-
id("org.springframework.boot") version "3.5.5" apply false
33+
id("org.springframework.boot") version "3.5.3" apply false
3434
id("project-report")
3535
id("org.owasp.dependencycheck") version "12.1.3"
3636
id("com.github.jk1.dependency-license-report") version "2.9"
@@ -55,7 +55,7 @@ val springBootVersion = "3.4.4"
5555
val springSecurityJwtVersion = "1.1.1.RELEASE"
5656
val springOauthAutoConfigureVersion = "2.6.8"
5757
val kotlinJvmTarget = 21
58-
val redisOmSpringVersion = "0.9.10"
58+
val redisOmSpringVersion = "1.0.0"
5959
val kotlinCoroutinesVersion = "1.10.2"
6060
val springDocVersion = "2.8.12"
6161
val swaggerParserVersion = "2.1.33"
@@ -326,7 +326,9 @@ subprojects {
326326
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:$kotlinCoroutinesVersion")
327327
testImplementation("org.testng:testng:$testNgVersion")
328328
testImplementation(
329-
"com.redis.testcontainers:testcontainers-redis-junit:$testContainersRedisVersion")
329+
"com.redis.testcontainers:testcontainers-redis-junit:$testContainersRedisVersion") {
330+
constraints { implementation("com.redis:lettucemod:4.4.0") }
331+
}
330332
testImplementation("org.testcontainers:postgresql:$testContainersPostgreSQLVersion")
331333
testImplementation("org.testcontainers:localstack:$testContainersLocalStackVersion")
332334
testImplementation("org.springframework.boot:spring-boot-starter-test")

0 commit comments

Comments
 (0)