From efdb5b050f7dd7a80bdc168d660b639498baecea Mon Sep 17 00:00:00 2001 From: Dan Timoney Date: Mon, 2 Nov 2020 11:00:33 -0500 Subject: Update tags to comply with ONAP naming standards Updated tag version to comply with ONAP naming standards Issue-ID: CCSDK-2963 Signed-off-by: Dan Timoney Change-Id: I654396e52baf4fc940bb43bb2e6fff357e3f2143 --- a1-policy-management/TagVersion.groovy | 41 ++++++++++++++++++++++++++++++++++ a1-policy-management/pom.xml | 21 +++++++++++++++-- 2 files changed, 60 insertions(+), 2 deletions(-) create mode 100644 a1-policy-management/TagVersion.groovy (limited to 'a1-policy-management') diff --git a/a1-policy-management/TagVersion.groovy b/a1-policy-management/TagVersion.groovy new file mode 100644 index 00000000..68a8b780 --- /dev/null +++ b/a1-policy-management/TagVersion.groovy @@ -0,0 +1,41 @@ +/*- + * ============LICENSE_START======================================================= + * ONAP CCSDK + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property. All rights + * reserved. + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ============LICENSE_END============================================ + * =================================================================== + * + */ + +package org.onap.ccsdk.distribution + + +def versionArray; +if ( project.properties['ccsdk.project.version'] != null ) { + versionArray = project.properties['ccsdk.project.version'].split('\\.'); +} + +if ( project.properties['ccsdk.project.version'].endsWith("-SNAPSHOT") ) { + patchArray = versionArray[2].split('-'); + project.properties['project.docker.latestminortag.version']=versionArray[0] + '.' + versionArray[1] + "-SNAPSHOT-latest"; + project.properties['project.docker.latestfulltag.version']=versionArray[0] + '.' + versionArray[1] + '.' + patchArray[0] + "-SNAPSHOT-latest"; + project.properties['project.docker.latesttagtimestamp.version']=versionArray[0] + '.' + versionArray[1] + '.' + patchArray[0] + "-SNAPSHOT-"+project.properties['ccsdk.build.timestamp']; +} else { + project.properties['project.docker.latestminortag.version']=versionArray[0] + '.' + versionArray[1] + "-STAGING-latest"; + project.properties['project.docker.latestfulltag.version']=versionArray[0] + '.' + versionArray[1] + '.' + versionArray[2] + "-STAGING-latest"; + project.properties['project.docker.latesttagtimestamp.version']=versionArray[0] + '.' + versionArray[1] + '.' + versionArray[2] + "-STAGING-"+project.properties['ccsdk.build.timestamp']; +} diff --git a/a1-policy-management/pom.xml b/a1-policy-management/pom.xml index bb8abe20..91f73adf 100644 --- a/a1-policy-management/pom.xml +++ b/a1-policy-management/pom.xml @@ -54,6 +54,7 @@ 2.22.2 0.8.5 true + ${project.version} @@ -192,6 +193,21 @@ + + org.codehaus.groovy.maven + gmaven-plugin + + + validate + + execute + + + ${basedir}/TagVersion.groovy + + + + org.springframework.boot spring-boot-maven-plugin @@ -321,8 +337,9 @@ ${project.build.finalName}.jar - ${project.version} - latest + ${project.docker.latestminortag.version} + ${project.docker.latestfulltag.version} + ${project.docker.latesttagtimestamp.version} -- cgit 1.2.3-korg