File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -128,6 +128,8 @@ allprojects {
128128 force(" com.redis.om:redis-om-spring:0.9.10" )
129129 force(" com.google.code.gson:gson:2.13.1" )
130130 force(" io.netty:netty-handler:4.2.4.Final" )
131+ force(" ch.qos.logback:logback-core:1.5.20" )
132+ force(" org.springframework.security:spring-security-core:6.5.5" )
131133 }
132134 }
133135 }
@@ -278,14 +280,18 @@ subprojects {
278280 implementation(" org.jetbrains.kotlinx:kotlinx-coroutines-core:$kotlinCoroutinesVersion " )
279281
280282 implementation(
281- platform(org.springframework.boot.gradle.plugin.SpringBootPlugin .BOM_COORDINATES ))
283+ platform(org.springframework.boot.gradle.plugin.SpringBootPlugin .BOM_COORDINATES )) {
284+ constraints { implementation(" org.springframework:spring-core:6.2.12" ) }
285+ }
282286
283287 implementation(" org.springframework.boot:spring-boot-starter-actuator" )
284288 implementation(" io.micrometer:micrometer-registry-prometheus" )
285289 implementation(" org.springframework.boot:spring-boot-starter-web" ) {
286290 exclude(group = " org.springframework.boot" , module = " spring-boot-starter-tomcat" )
287291 }
288- implementation(" org.springframework.boot:spring-boot-starter-undertow" )
292+ implementation(" org.springframework.boot:spring-boot-starter-undertow" ) {
293+ constraints { implementation(" io.undertow:undertow-core:2.3.20.Final" ) }
294+ }
289295 implementation(" com.fasterxml.jackson.module:jackson-module-kotlin:$jacksonModuleKotlinVersion " )
290296 // https://mvnrepository.com/artifact/jakarta.validation/jakarta.validation-api
291297 implementation(" jakarta.validation:jakarta.validation-api:$apiValidationVersion " )
You can’t perform that action at this time.
0 commit comments