Skip to content

Commit c87c710

Browse files
committed
Prohibit upgrades to HttpClient5 5.3
Closes gh-39007
1 parent 2849073 commit c87c710

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -443,6 +443,10 @@ bom {
443443
}
444444
}
445445
library("HttpClient5", "5.2.3") {
446+
prohibit {
447+
versionRange "[5.3]"
448+
because "it can NPE when discarding a connection (https://issues.apache.org/jira/browse/HTTPCLIENT-2313)"
449+
}
446450
group("org.apache.httpcomponents.client5") {
447451
modules = [
448452
"httpclient5",

0 commit comments

Comments
 (0)