aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcin Migdal <marcin.migdal@nokia.com>2018-11-19 11:43:55 +0100
committerMarcin Migdal <marcin.migdal@nokia.com>2018-11-19 15:13:40 +0100
commit7c822a064c6c16ade43ff7ad975d75072c6cfb9a (patch)
tree6b7034750b0ba40ae035e4c9693d7390a1013713
parent8e06d4c205b396f49d1f29e97f47c9c94386f52a (diff)
Upgrade version for PNF pom
Change-Id: I9f97e18efe2c4900a5fe9c402501bffd63e578cd Issue-ID: INT-725 Signed-off-by: Marcin Migdal <marcin.migdal@nokia.com>
-rw-r--r--test/mocks/pnfsimulator/docker-compose.yml2
-rw-r--r--test/mocks/pnfsimulator/pom.xml6
2 files changed, 4 insertions, 4 deletions
diff --git a/test/mocks/pnfsimulator/docker-compose.yml b/test/mocks/pnfsimulator/docker-compose.yml
index d853ca9da..c32d0e7bd 100644
--- a/test/mocks/pnfsimulator/docker-compose.yml
+++ b/test/mocks/pnfsimulator/docker-compose.yml
@@ -3,7 +3,7 @@ version: '3'
services:
pnf-simulator:
container_name: pnf-simulator
- image: nexus3.onap.org:10003/onap/pnf-simulator:latest
+ image: nexus3.onap.org:10003/onap/pnf-simulator:2.0.1-SNAPSHOT
ports:
- "5000:5000"
volumes:
diff --git a/test/mocks/pnfsimulator/pom.xml b/test/mocks/pnfsimulator/pom.xml
index 1f52bbdf2..f11d0e2d8 100644
--- a/test/mocks/pnfsimulator/pom.xml
+++ b/test/mocks/pnfsimulator/pom.xml
@@ -12,7 +12,7 @@
<groupId>org.onap.pnfsimulator</groupId>
<artifactId>pnf-simulator</artifactId>
- <version>2.0.0-SNAPSHOT</version>
+ <version>2.0.1-SNAPSHOT</version>
<name>pnf-simulator</name>
@@ -155,6 +155,7 @@
<version>5.0.4.RELEASE</version>
<scope>test</scope>
</dependency>
+
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
@@ -170,7 +171,7 @@
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptor>src/assembly/resources.xml</descriptor>
- <finalName>${project.artifactId}-${pom.version}</finalName>
+ <finalName>${project.artifactId}-${project.version}</finalName>
</configuration>
<executions>
<execution>
@@ -265,7 +266,6 @@
<imageName>${onap.nexus.dockerregistry.daily}/${docker.image.name}</imageName>
<forceTags>true</forceTags>
<imageTags>
- <tag>latest</tag>
<tag>${project.version}</tag>
<tag>${project.version}-${maven.build.timestamp}</tag>
</imageTags>
'>128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171