From 8ff247b17a1642996da5c1f066a1bd9f8ef01f24 Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Thu, 23 Jul 2015 19:37:29 +0200 Subject: [PATCH] Ensure spring-test builds against HttpComponents 4.5 This is necessary to ensure that the version of HtmlUnit that we use is compatible with HttpComponents 4.5. Issue: SPR-13158 --- build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/build.gradle b/build.gradle index 6537b84005..216662d3f2 100644 --- a/build.gradle +++ b/build.gradle @@ -1032,6 +1032,7 @@ project("spring-test") { } testCompile("org.hsqldb:hsqldb:${hsqldbVersion}") testCompile("org.slf4j:slf4j-jcl:${slf4jVersion}") + testCompile("org.apache.httpcomponents:httpclient:$httpclientVersion") } task testNG(type: Test) {