aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJessica Wagantall <jwagantall@linuxfoundation.org>2018-04-05 10:07:29 -0700
committerJessica Wagantall <jwagantall@linuxfoundation.org>2018-04-05 10:07:29 -0700
commitdc987abdd7fbbcff16f0eb9a3ddbd64458cc4bd2 (patch)
tree910225f9d849bdf6838d4d013669be4f522788af
parenta78ff010c35d2ed3a996f65dd79f9ec46288c195 (diff)
Add missing registry data
Add docker pull and push registry information in the pom.xml Change-Id: I467990158fd16352811657060f801f78fbf35578 Issue-ID: CIMAN-140 Signed-off-by: Jessica Wagantall <jwagantall@linuxfoundation.org>
-rw-r--r--pom.xml5
1 files changed, 4 insertions, 1 deletions
diff --git a/pom.xml b/pom.xml
index 41f598c..6c877bf 100644
--- a/pom.xml
+++ b/pom.xml
@@ -23,6 +23,8 @@
<!--docker-->
<docker.tag>${project.version}-${timestamp}</docker.tag>
<docker.latest.tag>${project.version}-latest</docker.latest.tag>
+ <docker.pull.registry>nexus3.onap.org:10001</docker.pull.registry>
+ <docker.push.registry>nexus3.onap.org:10003</docker.push.registry>
</properties>
<build>
@@ -45,7 +47,8 @@
<configuration>
<verbose>true</verbose>
<apiVersion>1.23</apiVersion>
- <registry>nexus3.onap.org:10003</registry>
+ <pullRegistry>${docker.pull.registry}</pullRegistry>
+ <pushRegistry>${docker.push.registry}</pushRegistry>
<images>
<image>
<name>openecomp/vvp/cms</name>