diff options
-rw-r--r-- | Dockerfile | 2 | ||||
-rw-r--r-- | pom.xml | 2 | ||||
-rw-r--r-- | version.properties | 4 |
3 files changed, 4 insertions, 4 deletions
@@ -17,7 +17,7 @@ FROM openjdk:11-jre-slim ARG SERVER_PORT -ARG PKG_FILENAME=nbi-rest-services-4.0.1-SNAPSHOT.jar +ARG PKG_FILENAME=nbi-rest-services-5.0.0-SNAPSHOT.jar ADD target/$PKG_FILENAME app.jar RUN addgroup appgroup && useradd -ms /bin/bash appuser && adduser appuser appgroup && mkdir temptoscafile && chown appuser:appgroup temptoscafile/ @@ -13,7 +13,7 @@ <groupId>org.onap.externalapi-nbi</groupId> <artifactId>nbi-rest-services</artifactId> - <version>4.0.1-SNAPSHOT</version> + <version>5.0.0-SNAPSHOT</version> <packaging>jar</packaging> <name>externalapi-nbi</name> diff --git a/version.properties b/version.properties index 54c8963..8d81bf9 100644 --- a/version.properties +++ b/version.properties @@ -18,9 +18,9 @@ # Note that these variables cannot be structured (e.g. : version.release or version.snapshot etc... ) # because they are used in Jenkins, whose plug-in doesn't support... -major = 4 +major = 5 minor = 0 -patch = 1 +patch = 0 base_version = ${major}.${minor}.${patch} |