diff options
author | Stavros Kanarakis <stavros.kanarakis@nokia.com> | 2019-03-29 10:44:59 +0200 |
---|---|---|
committer | Stavros Kanarakis <stavros.kanarakis@nokia.com> | 2019-04-01 09:55:59 +0300 |
commit | bc054e72de5bf2cca24dbd3f10f4bf5c8b81d242 (patch) | |
tree | 1ff35e132cfa2b40303c40e9c8d1d188b2f64ffd /components/bbs-event-processor/pom.xml | |
parent | c755a434e1202cb8f1ce7a18062e31e0912f989a (diff) |
Externalized Logging Level. Corrected tag name for images
Change-Id: Icfd8992f2fb620d80d5af2f79b9f847dc01f9938
Issue-ID: DCAEGEN2-1354
Signed-off-by: Stavros Kanarakis <stavros.kanarakis@nokia.com>
Diffstat (limited to 'components/bbs-event-processor/pom.xml')
-rw-r--r-- | components/bbs-event-processor/pom.xml | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/components/bbs-event-processor/pom.xml b/components/bbs-event-processor/pom.xml index 26a48787..ae9583ec 100644 --- a/components/bbs-event-processor/pom.xml +++ b/components/bbs-event-processor/pom.xml @@ -45,7 +45,7 @@ <dependency.dir.name>libs</dependency.dir.name> <dependency.dir.location>${project.build.directory}/${dependency.dir.name}</dependency.dir.location> <docker.artifact.dir>/opt</docker.artifact.dir> - <docker.image.name>dcae-services/${project.groupId}.${project.artifactId}</docker.image.name> + <docker.image.name>onap/${project.groupId}.${project.artifactId}</docker.image.name> <maven.build.timestamp.format>yyyyMMdd'T'HHmmss</maven.build.timestamp.format> </properties> @@ -371,6 +371,18 @@ </goals> </execution> <execution> + <id>tag-and-push-image-latest</id> + <phase>deploy</phase> + <goals> + <goal>tag</goal> + </goals> + <configuration> + <image>${docker.image.name}:latest</image> + <newName>${onap.nexus.dockerregistry.daily}/${docker.image.name}:latest</newName> + <pushImage>true</pushImage> + </configuration> + </execution> + <execution> <id>tag-and-push-image-with-version</id> <phase>deploy</phase> <goals> |