File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -174,8 +174,15 @@ val awaitilityKVersion = "4.2.2"
174174val testcontainersRedis = " 1.6.4"
175175
176176dependencies {
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" )
You can’t perform that action at this time.
0 commit comments