diff options
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 14 |
1 files changed, 9 insertions, 5 deletions
@@ -7,7 +7,7 @@ <version>1.0.0-SNAPSHOT</version> </parent> - <groupId>org.openecomp.vvp.portal</groupId> + <groupId>org.onap.vvp.portal</groupId> <artifactId>portal</artifactId> <packaging>pom</packaging> <version>1.0.0-SNAPSHOT</version> @@ -15,13 +15,16 @@ <properties> <!--nexus--> - <sitePath>/content/sites/site/org/openecomp/vvp/${project.artifactId}/${project.version}</sitePath> + <onap.nexus.url>https://nexus.onap.org</onap.nexus.url> + <sitePath>/content/sites/site/org/onap/vvp/${project.artifactId}/${project.version}</sitePath> <!--maven--> <timestamp>${maven.build.timestamp}</timestamp> <maven.build.timestamp.format>yyyyMMdd'T'HHmmss'Z'</maven.build.timestamp.format> <!--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> @@ -44,10 +47,11 @@ <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/portal</name> + <name>onap/vvp/portal</name> <alias>vvp-portal</alias> <build> <cleanup>true</cleanup> @@ -88,7 +92,7 @@ <goal>push</goal> </goals> <configuration> - <image>openecomp/vvp/portal</image> + <image>onap/vvp/portal</image> </configuration> </execution> </executions> |