diff options
author | 2018-05-04 21:10:08 -0400 | |
---|---|---|
committer | 2018-05-04 21:10:14 -0400 | |
commit | b03ce6a6c8881bc230ab96c07330cecc5c388254 (patch) | |
tree | dfb49cbb14ccedb5753ad7807baba2f2ee1d26ae | |
parent | 90072f126133c75c0b4799cc893c8d6893014edb (diff) |
No caps in image name
Issue-ID: DCAEGEN2-486
Change-Id: I9451e46f543e5e98ca19d28004d91f631c968ee6
Signed-off-by: Lusheng Ji <lji@research.att.com>
-rw-r--r-- | UniversalVesAdapter/pom.xml | 2 | ||||
-rw-r--r-- | snmpmapper/pom.xml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/UniversalVesAdapter/pom.xml b/UniversalVesAdapter/pom.xml index fd097af..c30587b 100644 --- a/UniversalVesAdapter/pom.xml +++ b/UniversalVesAdapter/pom.xml @@ -148,7 +148,7 @@ <version>${docker.maven.version}</version> <configuration> <skipDockerBuild>false</skipDockerBuild> - <imageName>${onap.nexus.dockerregistry.daily}/onap/org.onap.dcaegen2.mapper.${project.artifactId}</imageName> + <imageName>${onap.nexus.dockerregistry.daily}/onap/${project.groupId}.universalvesadaptor</imageName> <baseImage>openjdk:8-jre</baseImage> <entryPoint>["java", "-jar", "/opt/${project.build.finalName}.jar", "server"]</entryPoint> diff --git a/snmpmapper/pom.xml b/snmpmapper/pom.xml index 32e6b7e..efa04bb 100644 --- a/snmpmapper/pom.xml +++ b/snmpmapper/pom.xml @@ -109,7 +109,7 @@ <version>${docker.maven.version}</version> <configuration> <skipDockerBuild>false</skipDockerBuild> - <imageName>${onap.nexus.dockerregistry.daily}/onap/org.onap.dcaegen2.mapper.${project.artifactId}</imageName> + <imageName>${onap.nexus.dockerregistry.daily}/onap/${project.groupId}.${project.artifactId}</imageName> <baseImage>openjdk:8-jre</baseImage> <entryPoint>["java", "-jar", "/opt/${project.build.finalName}.jar", "server"]</entryPoint> <resources> |