From 32a6c7df4964a91dcd34c22fb911ad9d20b425af Mon Sep 17 00:00:00 2001 From: Dave Syer Date: Fri, 14 Jan 2022 08:43:23 +0000 Subject: [PATCH] Avoid split java.xml packages that cause JDT compile errors Without this change I get compiler errors from JDT in the IDE (VSCode). It seems to be harmless from the point of view of the command line build with the JDK. See gh-29389 --- spring-boot-project/spring-boot-docs/build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/spring-boot-project/spring-boot-docs/build.gradle b/spring-boot-project/spring-boot-docs/build.gradle index 5e1d7954e3..27b68809f5 100644 --- a/spring-boot-project/spring-boot-docs/build.gradle +++ b/spring-boot-project/spring-boot-docs/build.gradle @@ -83,6 +83,7 @@ dependencies { implementation("jakarta.validation:jakarta.validation-api") implementation("net.sourceforge.htmlunit:htmlunit") { exclude group: "commons-logging", module: "commons-logging" + exclude group: "xerces", module: "xercesImpl" } implementation("org.apache.commons:commons-dbcp2") { exclude group: "commons-logging", module: "commons-logging"