Skip to content

Commit e8a52bf

Browse files
committed
fix: apply review comments
1 parent 9656180 commit e8a52bf

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

build.gradle.kts

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,8 +174,15 @@ val awaitilityKVersion = "4.2.2"
174174
val testcontainersRedis = "1.6.4"
175175

176176
dependencies {
177-
implementation(platform(org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES))
178-
implementation("io.lettuce:lettuce-core:6.5.1.RELEASE")
177+
implementation(platform(org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES)) {
178+
constraints {
179+
implementation("io.lettuce:lettuce-core:6.5.1.RELEASE") {
180+
because("spring boot 3.4.1 depends on lettuce-core 6.4.1.RELEASE which has vulnerability" +
181+
" https://github.com/advisories/GHSA-q4h9-7rxj-7gx which was fixed in 6.5.1.RELEASE")
182+
}
183+
}
184+
}
185+
179186

180187
detekt("io.gitlab.arturbosch.detekt:detekt-cli:$detektVersion")
181188
detekt("io.gitlab.arturbosch.detekt:detekt-formatting:$detektVersion")
@@ -197,6 +204,7 @@ dependencies {
197204
implementation("com.fasterxml.jackson.core:jackson-annotations:$jacksonVersion")
198205
implementation("com.fasterxml.jackson.core:jackson-databind:$jacksonVersion")
199206
implementation("org.springframework:spring-web:$springWebVersion")
207+
implementation("org.springframework.boot:spring-boot-autoconfigure:$springBootVersion")
200208
}
201209
}
202210
implementation("org.springframework.boot:spring-boot-starter-security")

0 commit comments

Comments
 (0)