aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJessica Wagantall <jwagantall@linuxfoundation.org>2018-04-16 10:21:26 -0700
committerJessica Wagantall <jwagantall@linuxfoundation.org>2018-04-16 10:21:26 -0700
commitbfe5c407816713db3981f06cc569ef634f3530ab (patch)
tree4e58abaae696996983c4e32b44cf2fc98d57173a
parentd1c62c8f9de5cc5461ed4494d5a5886445643d84 (diff)
Fix snapshot tag
Snapshot tag takes project.version into its name, which already contains the word "SNAPSHOT" in it. No need to add the word SNAPSHOT in the tag again. Change-Id: I1afa2e49fd274d22f00f320e351d2adeb22b4826 Issue-ID: VVP-55 Signed-off-by: Jessica Wagantall <jwagantall@linuxfoundation.org>
-rw-r--r--pom.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/pom.xml b/pom.xml
index 946874a..06a4b96 100644
--- a/pom.xml
+++ b/pom.xml
@@ -21,7 +21,7 @@
<timestamp>${maven.build.timestamp}</timestamp>
<maven.build.timestamp.format>yyyyMMdd'T'HHmmss'Z'</maven.build.timestamp.format>
<!--docker-->
- <docker.snapshot.tag>${project.version}-SNAPSHOT-${timestamp}</docker.snapshot.tag>
+ <docker.snapshot.tag>${project.version}-${timestamp}</docker.snapshot.tag>
<docker.staging.tag>${project.version}-STAGING-${timestamp}</docker.staging.tag>
<docker.latest.tag>${project.version}-latest</docker.latest.tag>
<docker.pull.registry>nexus3.onap.org:10001</docker.pull.registry>