From 1b1086659c8a3c31b29e3275f1636d50ef4ac71b Mon Sep 17 00:00:00 2001 From: "Timoney, Dan (dt5972)" Date: Tue, 2 Apr 2019 12:53:53 -0700 Subject: [PATCH] Update to use fabric io docker plugin Update to use fabric io docker plugin to create docker image Change-Id: I6b068a3224bf9af9cc8c3b2e43dbb3af377d54b7 Issue-ID: CCSDK-1011 Signed-off-by: Timoney, Dan (dt5972) --- TagVersion.groovy | 41 +++++++++++++++++++++ ccsdk-app-os/pom.xml | 102 +++++++++++++++++++++++++++++++++++++-------------- 2 files changed, 116 insertions(+), 27 deletions(-) create mode 100644 TagVersion.groovy diff --git a/TagVersion.groovy b/TagVersion.groovy new file mode 100644 index 0000000..68a8b78 --- /dev/null +++ b/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/ccsdk-app-os/pom.xml b/ccsdk-app-os/pom.xml index 7744dda..a7c7f58 100644 --- a/ccsdk-app-os/pom.xml +++ b/ccsdk-app-os/pom.xml @@ -30,11 +30,16 @@ ${project.version} true - onap/${project.groupId}.${project.artifactId} - nexus3.onap.org:10003 - ${docker.push.registry}/${docker.image.name} + + onap/${project.groupId}.${project.artifactId} + ${project.version} + ${maven.build.timestamp} + ${project.version} + yyyyMMdd'T'HHmmss'Z' + true + @@ -71,7 +76,21 @@ 1.8 - + + org.codehaus.groovy.maven + gmaven-plugin + + + validate + + execute + + + ${basedir}/../TagVersion.groovy + + + + org.apache.maven.plugins maven-war-plugin @@ -120,29 +139,7 @@ - - com.spotify - dockerfile-maven-plugin - 1.4.10 - - true - ${image-name} - latest - Dockerfile - - ${project.build.finalName}.war - - - - - default - - build - push - - - - + org.apache.maven.plugins @@ -154,6 +151,57 @@ + + + + docker + + + + io.fabric8 + docker-maven-plugin + 0.28.0 + false + + + + ${image.name} + + try + ${basedir} + Dockerfile + + ${project.docker.latestminortag.version} + ${project.docker.latestfulltag.version} + ${project.docker.latesttagtimestamp.version} + + + + + + + + generate-images + package + + build + + + + + push-images + deploy + + build + push + + + + + + + + -- 2.16.6