Skip to content

Commit 0752d68

Browse files
committed
Update Spring Boot to 3.5.9 and Undertow dependencies to 2.3.21
1 parent 6a34415 commit 0752d68

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

build.gradle.kts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ plugins {
3131
kotlin("plugin.spring") version kotlinVersion apply false
3232
id("pl.allegro.tech.build.axion-release") version "1.21.1"
3333
id("com.diffplug.spotless") version "8.1.0"
34-
id("org.springframework.boot") version "3.5.8" apply false
34+
id("org.springframework.boot") version "3.5.9" apply false
3535
id("project-report")
3636
id("org.owasp.dependencycheck") version "12.1.9"
3737
id("com.github.jk1.dependency-license-report") version "3.0.1"
@@ -72,6 +72,7 @@ val testContainersPostgreSQLVersion = "1.21.3"
7272
val testContainersLocalStackVersion = "1.21.3"
7373
val commonCompressVersion = "1.28.0"
7474
val awsSpringVersion = "3.4.2"
75+
val undertowVersion = "2.3.21.Final"
7576

7677
// Checks
7778
val detektVersion = "1.23.8"
@@ -299,7 +300,9 @@ subprojects {
299300
implementation("org.springframework.boot:spring-boot-starter-undertow") {
300301
constraints {
301302
implementation("org.jboss.xnio:xnio-api:3.8.17.Final")
302-
implementation("io.undertow:undertow-core:2.3.20.Final")
303+
implementation("io.undertow:undertow-core:$undertowVersion")
304+
implementation("io.undertow:undertow-servlet:$undertowVersion")
305+
implementation("io.undertow:undertow-websockets-jsr:$undertowVersion")
303306
}
304307
}
305308
implementation("com.fasterxml.jackson.module:jackson-module-kotlin:$jacksonModuleKotlinVersion")

0 commit comments

Comments
 (0)