diff options
-rw-r--r-- | test/mocks/pnfsimulator/pom.xml | 4 | ||||
-rwxr-xr-x | test/mocks/pnfsimulator/simulator.sh | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/test/mocks/pnfsimulator/pom.xml b/test/mocks/pnfsimulator/pom.xml index 040f37023..2fee83622 100644 --- a/test/mocks/pnfsimulator/pom.xml +++ b/test/mocks/pnfsimulator/pom.xml @@ -6,7 +6,7 @@ <groupId>org.onap.pnfsimulator</groupId> <artifactId>pnf-simulator</artifactId> - <version>1.0-SNAPSHOT</version> + <version>1.0.0-SNAPSHOT</version> <name>pnf-simulator</name> @@ -15,7 +15,7 @@ <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <simulator.main.class>org.onap.pnfsimulator.Main</simulator.main.class> - <docker.image.tag>latest</docker.image.tag> + <docker.image.tag>${project.version}-latest</docker.image.tag> <dependency.directory.name>libs</dependency.directory.name> <dependency.directory.location>${project.build.directory}/${dependency.directory.name}</dependency.directory.location> <onap.nexus.dockerregistry.daily>nexus3.onap.org:10003</onap.nexus.dockerregistry.daily> diff --git a/test/mocks/pnfsimulator/simulator.sh b/test/mocks/pnfsimulator/simulator.sh index 5e8b2d5ac..d1185565f 100755 --- a/test/mocks/pnfsimulator/simulator.sh +++ b/test/mocks/pnfsimulator/simulator.sh @@ -5,7 +5,7 @@ set -euo pipefail CONTAINER_NAME=pnf-simulator CONFIG_FILE_PATH=/config/body.json SIMULATOR_DOCKER_HUB=nexus3.onap.org:10003/onap -SIMULATOR_TAG=latest +SIMULATOR_TAG=1.0.0-SNAPSHOT-latest function main(){ |