Skip to content

Commit bba964c

Browse files
committed
Prohibit upgrades to Tomcat 10.1.35 and 10.1.36
Closes gh-44331
1 parent 9dff6cd commit bba964c

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ nativeBuildToolsVersion=0.10.5
2121
snakeYamlVersion=2.2
2222
springFrameworkVersion=6.1.17
2323
springFramework60xVersion=6.0.23
24-
tomcatVersion=10.1.36
24+
tomcatVersion=10.1.34
2525

2626
kotlin.stdlib.default.dependency=false

spring-boot-project/spring-boot-dependencies/build.gradle

+4
Original file line numberDiff line numberDiff line change
@@ -2433,6 +2433,10 @@ bom {
24332433
}
24342434
}
24352435
library("Tomcat", "${tomcatVersion}") {
2436+
prohibit {
2437+
versionRange "[10.1.35,10.1.36]"
2438+
because "https://bz.apache.org/bugzilla/show_bug.cgi?id=69576 and related problems in 10.1.36"
2439+
}
24362440
group("org.apache.tomcat") {
24372441
modules = [
24382442
"tomcat-annotations-api",

0 commit comments

Comments
 (0)