From c0eb2cb4aee5428b27829dd79ec3b927b5c03a4e Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Thu, 12 Oct 2023 11:44:39 +0100 Subject: [PATCH] Prohibit upgrades to Undertow 2.2.27.Final Closes gh-37844 --- spring-boot-project/spring-boot-dependencies/build.gradle | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/spring-boot-project/spring-boot-dependencies/build.gradle b/spring-boot-project/spring-boot-dependencies/build.gradle index 5487c65ade..0d543272a5 100644 --- a/spring-boot-project/spring-boot-dependencies/build.gradle +++ b/spring-boot-project/spring-boot-dependencies/build.gradle @@ -1982,6 +1982,10 @@ bom { } } library("Undertow", "2.2.26.Final") { + prohibit { + versionRange "[2.2.27.Final]" + because "it is not compatibile with Java 8 (https://issues.redhat.com/browse/UNDERTOW-2324)" + } group("io.undertow") { modules = [ "undertow-core",