aboutsummaryrefslogtreecommitdiffstats
path: root/docker-api/pom.xml
diff options
context:
space:
mode:
authorValerij Fredriksen <valerijf@oath.com>2018-03-01 09:33:53 +0100
committerValerij Fredriksen <valerijf@oath.com>2018-03-01 12:38:42 +0100
commit54e05b2bf1dd64229a9233fdef87fe3b7fe7ba5b (patch)
tree4cbf3de0ca5535cef305c0810055347a52e74902 /docker-api/pom.xml
parentdf358608e3b15b12e49ebb93eef8b990b0700d87 (diff)
Set AuthConfig for image pull if credentials supplier is set
Diffstat (limited to 'docker-api/pom.xml')
-rw-r--r--docker-api/pom.xml15
1 files changed, 10 insertions, 5 deletions
diff --git a/docker-api/pom.xml b/docker-api/pom.xml
index fc3407d08be..e2ddd8dbcc9 100644
--- a/docker-api/pom.xml
+++ b/docker-api/pom.xml
@@ -69,7 +69,6 @@
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore</artifactId>
</exclusion>
-
<exclusion>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
@@ -77,22 +76,28 @@
</exclusions>
</dependency>
<dependency>
+ <groupId>commons-codec</groupId>
+ <artifactId>commons-codec</artifactId>
+ <version>1.10</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
<groupId>net.jpountz.lz4</groupId>
<artifactId>lz4</artifactId>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore</artifactId>
- <!-- We explicitly specify the version of httpcore to be used by
- docker-java so the dependency is declared closer to the root of maven and
+ <!-- We explicitly specify the version of httpcore to be used by
+ docker-java so the dependency is declared closer to the root of maven and
more likely be the version that is finally being used. -->
<version>4.4.1</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
- <!-- We explicitly specify the version of httpclient to be used by
- docker-java so the dependency is declared closer to the root of maven and
+ <!-- We explicitly specify the version of httpclient to be used by
+ docker-java so the dependency is declared closer to the root of maven and
more likely be the version that is finally being used. -->
<version>4.5</version>
</dependency>