From f28eb073b3daf99791daba6fd8c72842c7516afc Mon Sep 17 00:00:00 2001 From: Scott Frederick Date: Wed, 1 Dec 2021 15:18:32 -0600 Subject: [PATCH] Remove unnecessary exclusion from web-services starter See gh-28648 --- .../spring-boot-starter-web-services/build.gradle | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-web-services/build.gradle b/spring-boot-project/spring-boot-starters/spring-boot-starter-web-services/build.gradle index a284e23f1d..f01c8eeb69 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-web-services/build.gradle +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-web-services/build.gradle @@ -9,7 +9,5 @@ dependencies { api("com.sun.xml.messaging.saaj:saaj-impl") api("jakarta.xml.ws:jakarta.xml.ws-api") api("org.springframework:spring-oxm") - api("org.springframework.ws:spring-ws-core") { - exclude group: "jakarta.servlet", module: "jakarta.servlet-api" - } + api("org.springframework.ws:spring-ws-core") }