diff options
author | david.mcweeney <david.mcweeney@est.tech> | 2021-04-23 13:11:28 +0100 |
---|---|---|
committer | david.mcweeney <david.mcweeney@est.tech> | 2021-04-23 13:11:39 +0100 |
commit | 4bc1e2baee59e60f832065743c4869de4fdaa6c0 (patch) | |
tree | d6fb0e9203f6b69a617fcc2004944d09a89156a6 /dbc-client/pom.xml | |
parent | abd692f080ec83cb18b61a55fd276caea393a7f9 (diff) |
Fix Tags2.0.6
Signed-off-by: david.mcweeney <david.mcweeney@est.tech>
Change-Id: I951bce3a10ce14b28f5f2f42f7ac1a645c5dd66a
Issue-ID: DMAAP-1544
Diffstat (limited to 'dbc-client/pom.xml')
-rw-r--r-- | dbc-client/pom.xml | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/dbc-client/pom.xml b/dbc-client/pom.xml index 6de1007..fdda1a5 100644 --- a/dbc-client/pom.xml +++ b/dbc-client/pom.xml @@ -118,25 +118,26 @@ <id>docker</id> <properties> <skipDockerBuild>${skip.docker.build}</skipDockerBuild> - <skipDockerTag>${skip.docker.tag}</skipDockerTag> <skipTests>true</skipTests> </properties> <build> <plugins> <plugin> + <groupId>org.codehaus.gmaven</groupId> + <artifactId>gmaven-plugin</artifactId> + </plugin> + <plugin> <groupId>io.fabric8</groupId> <artifactId>docker-maven-plugin</artifactId> <configuration> - <verbose>${docker.verbose}</verbose> - <apiVersion>${docker.apiVersion}</apiVersion> - <pullRegistry>${docker.pull.registry}</pullRegistry> - <pushRegistry>${docker.push.registry}</pushRegistry> <images> <image> <name>${dmaapbcclient.image.name}</name> <build> <cleanup>try</cleanup> - <dockerFileDir>${basedir}/target/docker-stage</dockerFileDir> + <noCache>true</noCache> + <optimise>true</optimise> + <contextDir>${basedir}/target/docker-stage</contextDir> <dockerFile>Dockerfile</dockerFile> <tags> <tag>${dockertag1}</tag> |