aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.gitreview5
-rw-r--r--pom.xml14
2 files changed, 14 insertions, 5 deletions
diff --git a/.gitreview b/.gitreview
new file mode 100644
index 0000000..198c2cc
--- /dev/null
+++ b/.gitreview
@@ -0,0 +1,5 @@
+[gerrit]
+host=gerrit.onap.org
+port=29418
+project=vvp/gitlab.git
+
diff --git a/pom.xml b/pom.xml
index 4a7db51..bed322c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -7,7 +7,7 @@
<version>1.0.0-SNAPSHOT</version>
</parent>
- <groupId>org.openecomp.vvp.gitlab</groupId>
+ <groupId>org.onap.vvp.gitlab</groupId>
<artifactId>gitlab</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/gitlab</name>
+ <name>onap/vvp/gitlab</name>
<alias>vvp-gitlab</alias>
<build>
<cleanup>true</cleanup>
@@ -87,7 +91,7 @@
<goal>push</goal>
</goals>
<configuration>
- <image>openecomp/vvp/gitlab</image>
+ <image>onap/vvp/gitlab</image>
</configuration>
</execution>
</executions>