aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMohammed Naser <mnaser@vexxhost.com>2018-04-16 14:03:22 -0700
committerMohammed Naser <mnaser@vexxhost.com>2018-04-16 14:03:39 -0700
commit42b4855ab9167e72b4232c0935f81afe1d6c2074 (patch)
tree8383b822cdc39211f319f51c7d8563ea1727d67a
parent2b34c9375762146a48a5ea866e0dd5954e780b3c (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/fabric8io/docker-maven-plugin/pull/770 Change-Id: Ia69b1b1807e79cbc50bd12dbb7dd7f9f3d60cfc9 Issue-ID: CIMAN-154 Signed-off-by: Mohammed Naser <mnaser@vexxhost.com>
-rwxr-xr-xpom.xml7
1 files changed, 7 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index 76505ad5..7538738d 100755
--- a/pom.xml
+++ b/pom.xml
@@ -361,6 +361,13 @@
<groupId>io.fabric8</groupId>
<artifactId>docker-maven-plugin</artifactId>
<version>0.19.1</version>
+ <dependencies>
+ <dependency>
+ <groupId>com.github.jnr</groupId>
+ <artifactId>jnr-unixsocket</artifactId>
+ <version>0.13</version>
+ </dependency>
+ </dependencies>
<configuration>
<verbose>true</verbose>
<apiVersion>1.23</apiVersion>