diff options
Diffstat (limited to 'prh-app-server')
-rw-r--r-- | prh-app-server/pom.xml | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/prh-app-server/pom.xml b/prh-app-server/pom.xml index aad1c99a..dbe3d1b7 100644 --- a/prh-app-server/pom.xml +++ b/prh-app-server/pom.xml @@ -91,7 +91,7 @@ <configuration> <skipDockerBuild>false</skipDockerBuild> <imageName> - ${onap.nexus.dockerregistry.daily}/onap/${project.groupId}.${project.artifactId} + ${docker.repo.url}/onap/${project.groupId}.${project.artifactId} </imageName> <baseImage>openjdk:8-jre-alpine</baseImage> <entryPoint>["java", "-jar", "/opt/${project.fatJar.finalName}.jar"]</entryPoint> @@ -119,6 +119,18 @@ <serverId>${docker.repo.url}</serverId> </configuration> </plugin> + <plugin> + <groupId>org.sonatype.plugins</groupId> + <artifactId>nexus-staging-maven-plugin</artifactId> + <version>1.6.7</version> + <extensions>true</extensions> + <configuration> + <serverId>ecomp-staging</serverId> + <nexusUrl>${nexusproxy}</nexusUrl> + <stagingProfileId>176c31dfe190a</stagingProfileId> + <skipNexusStagingDeployMojo>${nexus.staging}</skipNexusStagingDeployMojo> + </configuration> + </plugin> </plugins> </build> <dependencies> @@ -182,7 +194,7 @@ <groupId>org.onap.dcaegen2.services.prh</groupId> <artifactId>prh-commons</artifactId> <version>1.0.0-SNAPSHOT</version> - </dependency> + </dependency> <!-- LOGGING DEPENDENCIES--> |