From a927c4860ea123be02bd3a52a4b1dd0697c1e76f Mon Sep 17 00:00:00 2001 From: Patrick Boos Date: Mon, 23 Dec 2024 13:08:09 +0100 Subject: [PATCH] [CHK-11671] Remove undertow in example (security) --- examples/example-spring-boot-starter-web/build.gradle | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/examples/example-spring-boot-starter-web/build.gradle b/examples/example-spring-boot-starter-web/build.gradle index 480d533b..c49b3e87 100644 --- a/examples/example-spring-boot-starter-web/build.gradle +++ b/examples/example-spring-boot-starter-web/build.gradle @@ -9,16 +9,10 @@ plugins { dependencies { implementation project(':examples:examples-common') implementation project(':spring-boot-starter:spring-boot-starter-web') - implementation('org.springframework.boot:spring-boot-starter-web') { - exclude group: 'org.springframework.boot', module: 'spring-boot-starter-tomcat' - exclude group: 'io.undertow', module: 'undertow-websockets-jsr' - } + implementation('org.springframework.boot:spring-boot-starter-web') - implementation 'org.springframework.boot:spring-boot-starter-undertow' implementation 'org.springframework.boot:spring-boot-starter-validation' - implementation 'org.hibernate.validator:hibernate-validator' - implementation 'org.springframework.boot:spring-boot-starter-validation' implementation(libs.openapi.tools.jacksonDatabindNullable) implementation(libs.jakarta.validation.api) implementation(libs.swagger.annotations)