summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pom.xml23
1 files changed, 23 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index a1d8337..65e17bf 100644
--- a/pom.xml
+++ b/pom.xml
@@ -165,6 +165,18 @@
<skipDockerTag>${skip.docker.push}</skipDockerTag>
</configuration>
</execution>
+ <execution>
+ <id>tag-image-tmp</id>
+ <phase>install</phase>
+ <goals>
+ <goal>tag</goal>
+ </goals>
+ <configuration>
+ <image>onap/dmaap/dmaap-mr</image>
+ <newName>${docker.push.registry}/onap/dmaap/dmaap-mr:${dmaapImg.release.version}</newName>
+ <skipDockerTag>${skip.docker.push}</skipDockerTag>
+ </configuration>
+ </execution>
<execution>
<id>push-image-latest</id>
@@ -189,6 +201,17 @@
<skipDockerPush>${skip.docker.push}</skipDockerPush>
</configuration>
</execution>
+ <execution>
+ <id>push-image-tmp</id>
+ <phase>deploy</phase>
+ <goals>
+ <goal>push</goal>
+ </goals>
+ <configuration>
+ <imageName>${docker.push.registry}/onap/dmaap/dmaap-mr:${dmaapImg.release.version}</imageName>
+ <skipDockerPush>${skip.docker.push}</skipDockerPush>
+ </configuration>
+ </execution>
</executions>
</plugin>
<plugin>