diff options
author | Michael Hwang <mhwang@research.att.com> | 2017-09-14 14:42:52 -0400 |
---|---|---|
committer | Michael Hwang <mhwang@research.att.com> | 2017-09-14 14:46:44 -0400 |
commit | 658a739aaf07bda8ad090e43e6e0780c2d1a5f8a (patch) | |
tree | 04e7eb5b83b81c54c6cced39f12ff87a3d5c4e3a /pom.xml | |
parent | ff326a4a26ea1e2921e7ecc491c7c6ed9de43c1d (diff) |
Make updates to pom to work with oparent and jjb
Change-Id: Id8dc78bde28861a6dd548a20840d638ad00c1ac9
Issue-Id: DCAEGEN2-60
Signed-off-by: Michael Hwang <mhwang@research.att.com>
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 17 |
1 files changed, 10 insertions, 7 deletions
@@ -1,8 +1,14 @@ <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> - <groupId>org.openecomp.dcae</groupId> - <artifactId>dcae-inventory</artifactId> + <parent> + <groupId>org.onap.oparent</groupId> + <artifactId>oparent</artifactId> + <version>1.0.0-SNAPSHOT</version> + </parent> + + <groupId>org.onap.dcaegen2.platform</groupId> + <artifactId>inventory-api</artifactId> <version>1.2.0</version> <!--internal <version>2.4.0</version>--> @@ -15,7 +21,6 @@ <ecomp.organizationName>AT&T Intellectual Property. All rights reserved.</ecomp.organizationName> <maven.build.timestamp.format>yyyyMMdd'T'HHmmss</maven.build.timestamp.format> - <docker.registry>nexus3.onap.org:10003</docker.registry> <nexusproxy>https://nexus.onap.org</nexusproxy> <snapshots.path>content/repositories/snapshots/</snapshots.path> <releases.path>content/repositories/releases/</releases.path> @@ -296,8 +301,7 @@ </goals> <configuration> <image>${project.artifactId}</image> - <newName>${docker.registry}/openecomp/${project.artifactId}:${project.version}-${maven.build.timestamp}</newName> - <!--serverId>${docker.registry}</serverId--> + <newName>${onap.nexus.dockerregistry.daily}/onap/${project.groupId}.${project.artifactId}:${project.version}-${maven.build.timestamp}</newName> <pushImage>false</pushImage> </configuration> </execution> @@ -309,8 +313,7 @@ </goals> <configuration> <image>${project.artifactId}</image> - <newName>${docker.registry}/openecomp/${project.artifactId}:LATEST</newName> - <!--serverId>${docker.registry}</serverId--> + <newName>${onap.nexus.dockerregistry.daily}/onap/${project.groupId}.${project.artifactId}:LATEST</newName> <pushImage>false</pushImage> </configuration> </execution> |