aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Hwang <mhwang@research.att.com>2017-09-14 15:10:24 -0400
committerMichael Hwang <mhwang@research.att.com>2017-09-14 15:11:12 -0400
commit6394642f39043a58d0ced9e64b8951178c1b7d14 (patch)
tree24245bc7ee50a504a31db9b2015c73f29510c076
parent658a739aaf07bda8ad090e43e6e0780c2d1a5f8a (diff)
Change deploy goal to push Docker image
Also remove distribution section which is now in oparent Change-Id: I0573672c11fa6eaf7f7d974e7d6c21759bac1cb3 Issue-Id: DCAEGEN2-60 Signed-off-by: Michael Hwang <mhwang@research.att.com>
-rw-r--r--pom.xml21
1 files changed, 2 insertions, 19 deletions
diff --git a/pom.xml b/pom.xml
index ea210d5..b760888 100644
--- a/pom.xml
+++ b/pom.xml
@@ -302,7 +302,7 @@
<configuration>
<image>${project.artifactId}</image>
<newName>${onap.nexus.dockerregistry.daily}/onap/${project.groupId}.${project.artifactId}:${project.version}-${maven.build.timestamp}</newName>
- <pushImage>false</pushImage>
+ <pushImage>true</pushImage>
</configuration>
</execution>
<execution>
@@ -314,7 +314,7 @@
<configuration>
<image>${project.artifactId}</image>
<newName>${onap.nexus.dockerregistry.daily}/onap/${project.groupId}.${project.artifactId}:LATEST</newName>
- <pushImage>false</pushImage>
+ <pushImage>true</pushImage>
</configuration>
</execution>
</executions>
@@ -374,21 +374,4 @@
</plugin>
</plugins>
</reporting>
-
- <distributionManagement>
- <repository>
- <id>ecomp-releases</id>
- <name>Open eCOMP Release Repository</name>
- <url>${nexusproxy}/${releases.path}</url>
- </repository>
- <snapshotRepository>
- <id>ecomp-snapshots</id>
- <name>Open eCOMP Snapshot Repository</name>
- <url>${nexusproxy}/${snapshots.path}</url>
- </snapshotRepository>
- <site>
- <id>ecomp-site</id>
- <url>dav:${nexusproxy}/${site.path}</url>
- </site>
- </distributionManagement>
</project>