summaryrefslogtreecommitdiffstats
path: root/container-core/pom.xml
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorncs@verizonmedia.com>2021-04-09 15:58:26 +0200
committerBjørn Christian Seime <bjorncs@verizonmedia.com>2021-04-09 18:51:21 +0200
commit4f4966863c7392fe49cdcbe5073c3a59b79af84a (patch)
treeabe9c185f70d0a807b9974179e62eea80561d763 /container-core/pom.xml
parent67dd4c823b03629374761c3adfbc3233ad087999 (diff)
Use httpclient5 in SimpleHttpClient
Diffstat (limited to 'container-core/pom.xml')
-rw-r--r--container-core/pom.xml11
1 files changed, 11 insertions, 0 deletions
diff --git a/container-core/pom.xml b/container-core/pom.xml
index 35bb62879fb..8334dcf1f60 100644
--- a/container-core/pom.xml
+++ b/container-core/pom.xml
@@ -313,6 +313,17 @@
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
+ <dependency>
+ <groupId>org.apache.httpcomponents.client5</groupId>
+ <artifactId>httpclient5</artifactId>
+ <scope>test</scope>
+ <exclusions>
+ <exclusion>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-api</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
</dependencies>
<build>
<plugins>