diff options
author | Mohammed Naser <mnaser@vexxhost.com> | 2018-04-16 13:40:08 -0700 |
---|---|---|
committer | James Forsyth <jf2512@att.com> | 2018-05-23 20:33:06 +0000 |
commit | f2d42f2d0cf695ad317662e5f7d4272efbea56b7 (patch) | |
tree | c3518932ca4cf3d855534ee306e99c67261dac6b /pom.xml | |
parent | 543c8a0fea00872c003b8ebe685dfd7ab85ac3b0 (diff) |
Pin jnr-unixsocket for Docker plugin to 0.13
The current verison of jnr-unixsocket is 0.12 from the Docker
plugin however in order to be able the images for ARM64, it needs
the newer version which has support for it.
There is work upstream to switch the version to 0.18[0] however
it seems that this is still pending, so we can pin it for now until
that merges.
[0]: https://github.com/spotify/docker-maven-plugin/pull/379
Change-Id: Id863e5fccd4e89f7113b58f8c6b5be760a8797b7
Issue-ID: CIMAN-154
Signed-off-by: Mohammed Naser <mnaser@vexxhost.com>
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -296,6 +296,13 @@ <groupId>com.spotify</groupId> <artifactId>docker-maven-plugin</artifactId> <version>0.4.11</version> + <dependencies> + <dependency> + <groupId>com.github.jnr</groupId> + <artifactId>jnr-unixsocket</artifactId> + <version>0.13</version> + </dependency> + </dependencies> <configuration> <verbose>true</verbose> <serverId>docker-hub</serverId> |