From 7ed84c36b82ca786492c81dbbc2c1d0a431e598a Mon Sep 17 00:00:00 2001 From: Luca Milanesio Date: Wed, 23 Dec 2020 00:42:14 +0000 Subject: Fix httpcore dependency needed by httpclient httpcore has removed annotations used by httpclient and therefore it would fail to execute the annotation processor. E.g. the high-availability plugin, which uses the httpclient, won't compile anymore because is failing to find the missing annotation removed from httpcore from v4.4.5 onwards. The wrong httpcore dependency was introduced yesterday with the merge of Change-Id: I1fc91bce. Change-Id: I2d45001995806074534c11fc5230765e4c99e5a2 --- WORKSPACE | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/WORKSPACE b/WORKSPACE index 0f2733bc26..36dc61b850 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -817,8 +817,8 @@ maven_jar( maven_jar( name = "httpcore", - artifact = "org.apache.httpcomponents:httpcore:4.4.12", - sha1 = "21ebaf6d532bc350ba95bd81938fa5f0e511c132", + artifact = "org.apache.httpcomponents:httpcore:4.4.4", + sha1 = "b31526a230871fbe285fbcbe2813f9c0839ae9b0", ) # Test-only dependencies below. -- cgit v1.2.3