aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMohammed Naser <mnaser@vexxhost.com>2018-04-16 13:30:08 -0700
committerJames Forsyth <jf2512@att.com>2018-05-23 20:33:32 +0000
commit6f3063de3909f091afd7fb8e08ddcf59fe19c5a0 (patch)
tree7868811d872bd5d29e54d18d3dd251805b48e009
parent762153cd733f43697679c3f97eba09212cbd2839 (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: Ieb1b5c6e43d3dc1425b2ab63f2fd161e452e5a57 Issue-ID: CIMAN-154 Signed-off-by: Mohammed Naser <mnaser@vexxhost.com>
-rw-r--r--champ-service/pom.xml7
1 files changed, 7 insertions, 0 deletions
diff --git a/champ-service/pom.xml b/champ-service/pom.xml
index 7286874..14140c7 100644
--- a/champ-service/pom.xml
+++ b/champ-service/pom.xml
@@ -317,6 +317,13 @@ limitations under the License.
<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>