diff options
author | Bin Yang <bin.yang@windriver.com> | 2019-07-15 07:20:44 +0000 |
---|---|---|
committer | Bin Yang <bin.yang@windriver.com> | 2019-07-15 07:48:16 +0000 |
commit | 263f17d303aae3f8f65577eb06ea65e314f47834 (patch) | |
tree | f7d0cc7de6caf38ae2f7c64a655cb868a6e9d819 | |
parent | cf974e1ceb44987d78f57559f23c0a71be52f3c7 (diff) |
Refine the docker profile
Change-Id: I83779d2d566ff8b120fb712924e6d88e771cafa6
Issue-ID: MULTICLOUD-704
Signed-off-by: Bin Yang <bin.yang@windriver.com>
-rw-r--r-- | pom.xml | 2 | ||||
-rw-r--r-- | windriver/pom.xml | 12 |
2 files changed, 9 insertions, 5 deletions
@@ -35,6 +35,8 @@ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <nexusproxy>https://nexus.onap.org</nexusproxy> + <container-public-registry>nexus3.onap.org:10001</container-public-registry> + <container-staging-registry>nexus3.onap.org:10003</container-staging-registry> </properties> <modules> diff --git a/windriver/pom.xml b/windriver/pom.xml index 9aa31794..1eb5a1c6 100644 --- a/windriver/pom.xml +++ b/windriver/pom.xml @@ -119,7 +119,9 @@ <build> <plugins> <plugin> + <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> + <version>3.1.0</version> <executions> <execution> <id>copy-resources</id> @@ -152,21 +154,21 @@ <exec executable="docker"> <arg value="build"/> <arg value="-t"/> - <arg value="nexus3.onap.org:10003/onap/multicloud/openstack-windriver:${project.version}"/> + <arg value="${container-staging-registry}/onap/multicloud/openstack-windriver:${project.version}"/> <arg value="docker_target"/> </exec> <exec executable="docker"> <arg value="tag"/> - <arg value="nexus3.onap.org:10003/onap/multicloud/openstack-windriver:${project.version}"/> - <arg value="nexus3.onap.org:10003/onap/multicloud/openstack-windriver:latest"/> + <arg value="${container-staging-registry}/onap/multicloud/openstack-windriver:${project.version}"/> + <arg value="${container-staging-registry}/onap/multicloud/openstack-windriver:latest"/> </exec> <exec executable="docker"> <arg value="push"/> - <arg value="nexus3.onap.org:10003/onap/multicloud/openstack-windriver:${project.version}"/> + <arg value="${container-staging-registry}/onap/multicloud/openstack-windriver:${project.version}"/> </exec> <exec executable="docker"> <arg value="push"/> - <arg value="nexus3.onap.org:10003/onap/multicloud/openstack-windriver:latest"/> + <arg value="${container-staging-registry}/onap/multicloud/openstack-windriver:latest"/> </exec> </target> </configuration> |