diff options
author | Vijay Venkatesh Kumar <vv770d@att.com> | 2019-07-21 02:00:10 +0000 |
---|---|---|
committer | Vijay Venkatesh Kumar <vv770d@att.com> | 2019-07-21 02:00:16 +0000 |
commit | 20fe5dd9e8f4733a9435b7c338a5932b6b0d255c (patch) | |
tree | 698e5b90465aee1f3bed1d8f8bd51a2a4b4e6a78 /pom.xml | |
parent | 70a63397f6803a18c6f53e2b64149e06641424c9 (diff) |
remove mvn binding for docker
Change-Id: I8d42e230213799015c47eeef9b16980a75f7092c
Signed-off-by: Vijay Venkatesh Kumar <vv770d@att.com>
Issue-ID: DCAEGEN2-1578
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -2,6 +2,7 @@ <!-- ================================================================================ Copyright (c) 2019 Huawei. All rights reserved. +Copyright (c) 2019 AT&T. All rights reserved. ================================================================================ Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -193,9 +194,11 @@ limitations under the License. <artifactId>docker-maven-plugin</artifactId> <configuration> <serverId>${onap.nexus.dockerregistry.daily}</serverId> - <imageName>${docker.image.name}</imageName> + <imageName>${onap.nexus.dockerregistry.daily}/${docker.image.name}</imageName> <imageTags> - <tag>latest</tag> + <imageTag>${project.version}-${maven.build.timestamp}Z</imageTag> + <imageTag>${project.version}</imageTag> + <imageTag>latest</imageTag> </imageTags> <baseImage>openjdk:8-jre-alpine</baseImage> <env> @@ -218,6 +221,7 @@ limitations under the License. </exposes> <user>${docker.user.name}</user> </configuration> +<!-- <executions> <execution> <id>build-image</id> @@ -263,6 +267,7 @@ limitations under the License. </configuration> </execution> </executions> +--> </plugin> </plugins> </build> |