diff options
author | Michael Hwang <mhwang@research.att.com> | 2017-09-14 15:10:24 -0400 |
---|---|---|
committer | Michael Hwang <mhwang@research.att.com> | 2017-09-14 15:11:12 -0400 |
commit | 6394642f39043a58d0ced9e64b8951178c1b7d14 (patch) | |
tree | 24245bc7ee50a504a31db9b2015c73f29510c076 | |
parent | 658a739aaf07bda8ad090e43e6e0780c2d1a5f8a (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.xml | 21 |
1 files changed, 2 insertions, 19 deletions
@@ -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> |