aboutsummaryrefslogtreecommitdiffstats
path: root/installation/sdnc-web/src
diff options
context:
space:
mode:
authorMichael Dürre <michael.duerre@highstreet-technologies.com>2020-02-07 07:23:27 +0100
committerDan Timoney <dtimoney@att.com>2020-02-19 14:29:16 +0000
commit8bbe748d631353b8c48c7d71eb733cf85712884c (patch)
tree025ce26fe32065f5608d516d79f51f483c5d4459 /installation/sdnc-web/src
parentf0cbef6e5e20b947252c1ff9ef851de7990f8128 (diff)
fixed sdnc-web pom
fixed parent and also some other props sync to sdnc-image Issue-ID: SDNC-1064 Signed-off-by: Michael Dürre <michael.duerre@highstreet-technologies.com> Change-Id: I7807e6298da407d0e87db24e6b95b32d4655c5f7 Signed-off-by: Michael Dürre <michael.duerre@highstreet-technologies.com> Former-commit-id: b5cd53a8da9d5a4707875e97d6975097217e9545
Diffstat (limited to 'installation/sdnc-web/src')
-rw-r--r--installation/sdnc-web/src/main/scripts/TagVersion.groovy41
1 files changed, 0 insertions, 41 deletions
diff --git a/installation/sdnc-web/src/main/scripts/TagVersion.groovy b/installation/sdnc-web/src/main/scripts/TagVersion.groovy
deleted file mode 100644
index 16880561..00000000
--- a/installation/sdnc-web/src/main/scripts/TagVersion.groovy
+++ /dev/null
@@ -1,41 +0,0 @@
-/*-
- * ============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.features.version'] != null ) {
- versionArray = project.properties['ccsdk.features.version'].split('\\.');
-}
-
-if ( project.properties['ccsdk.features.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'];
-}