diff options
Diffstat (limited to 'test/mocks')
-rw-r--r-- | test/mocks/pnfsimulator/.gitlab-ci.yml | 9 | ||||
-rw-r--r-- | test/mocks/pnfsimulator/pom.xml | 11 |
2 files changed, 5 insertions, 15 deletions
diff --git a/test/mocks/pnfsimulator/.gitlab-ci.yml b/test/mocks/pnfsimulator/.gitlab-ci.yml deleted file mode 100644 index 4320a5725..000000000 --- a/test/mocks/pnfsimulator/.gitlab-ci.yml +++ /dev/null @@ -1,9 +0,0 @@ -image: archive.docker-registry.eecloud.nsn-net.net/imp/matryoshka:latest - -stages: - - build - -build: - stage: build - script: - - mvn clean package diff --git a/test/mocks/pnfsimulator/pom.xml b/test/mocks/pnfsimulator/pom.xml index c0e1ad825..0af1f6f6d 100644 --- a/test/mocks/pnfsimulator/pom.xml +++ b/test/mocks/pnfsimulator/pom.xml @@ -164,13 +164,12 @@ <artifactId>docker-maven-plugin</artifactId> <version>1.0.0</version> <configuration> - <imageName>${project.artifactId}</imageName> - <imageTags>${docker.image.tag}</imageTags> + <imageName>${onap.nexus.dockerregistry.daily}/onap/${project.artifactId}</imageName> + <imageTags>latest</imageTags> + <imageTags>${project.version}-latest</imageTags> <serverId>${onap.nexus.dockerregistry.daily}</serverId> - <baseImage>openjdk:8-jre-alpine</baseImage> - <cmd> - java -cp ${dependency.directory.name}/*:${project.build.finalName}.jar ${simulator.main.class} - </cmd> + <baseImage>openjdk:8-jdk-alpine</baseImage> + <cmd>java -cp ${dependency.directory.name}/*:${project.build.finalName}.jar ${simulator.main.class}</cmd> <resources> <resource> <targetPath>${dependency.directory.name}</targetPath> |