aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-fe
diff options
context:
space:
mode:
authorAreli, Fuss (af732p) <af732p@att.com>2018-04-12 13:25:35 +0300
committerTal Gitelman <tg851x@intl.att.com>2018-04-12 12:47:27 +0000
commitc7941c2287c3858e4006f3a15ffd6e5a2f33af2e (patch)
tree8197b8ed76a965b2072cd136968486ff13601785 /catalog-fe
parentc9786d9a863181176c0a4aa5c38d2c202a94b41b (diff)
Add docker login properties
Add docker login properties Change-Id: Idc50bcecf8d0bf5c41213ed2297191fb233b4c74 Issue-ID: SDC-1217 Signed-off-by: Areli, Fuss (af732p) <af732p@att.com>
Diffstat (limited to 'catalog-fe')
-rw-r--r--catalog-fe/pom.xml10
1 files changed, 6 insertions, 4 deletions
diff --git a/catalog-fe/pom.xml b/catalog-fe/pom.xml
index f0ecbbce37..3b5bcab4b6 100644
--- a/catalog-fe/pom.xml
+++ b/catalog-fe/pom.xml
@@ -441,6 +441,10 @@
<activation>
<activeByDefault>false</activeByDefault>
</activation>
+ <properties>
+ <docker.username>docker</docker.username>
+ <docker.password>docker</docker.password>
+ </properties>
<build>
<plugins>
<plugin>
@@ -484,13 +488,12 @@
<registry>nexus3.onap.org:10001</registry>
<authConfig>
<pull>
- <username>docker</username>
- <password>docker</password>
+ <username>${docker.username}</username>
+ <password>${docker.password}</password>
</pull>
</authConfig>
<images>
-
<!-- Build frontend image -->
<image>
<name>onap/sdc-frontend</name>
@@ -543,6 +546,5 @@
</plugins>
</build>
</profile>
-
</profiles>
</project>