diff options
author | Mohammed Naser <mnaser@vexxhost.com> | 2018-04-16 13:19:24 -0700 |
---|---|---|
committer | Mohammed Naser <mnaser@vexxhost.com> | 2018-04-16 13:23:09 -0700 |
commit | b50d09cce12ac78b3f518a5e52ffa45cde259e70 (patch) | |
tree | d475de5396c01f208ff09c8c1a0117ae32fc999e /pom.xml | |
parent | 5268f7df05e57c04a7b6ded3ecb4938ce1ae2a3d (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: I81a8ed45a0c39eaa6ddab85c37a269b30c53acff
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
@@ -408,6 +408,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> |