From 2822de37b0c060dcd96bea9ec3c146da494fb715 Mon Sep 17 00:00:00 2001 From: liangke Date: Tue, 12 Sep 2017 13:18:05 +0800 Subject: Fix docker building issue 1 Remove redis server 2 Add pom.xml adn version.properties Change-Id: Ic9f5443cfa7b0fd379f09d3f008f4d259e212731 Issue-Id: MULTICLOUD-74 Signed-off-by: liangke --- pom.xml | 64 +++++++++------------------------------------- version.properties | 28 ++++++++++++++++++++ vio/docker/instance-run.sh | 2 -- vio/pom.xml | 2 +- vio/version.properties | 2 +- 5 files changed, 42 insertions(+), 56 deletions(-) create mode 100644 version.properties diff --git a/pom.xml b/pom.xml index 263afcf..0eb2260 100644 --- a/pom.xml +++ b/pom.xml @@ -1,70 +1,30 @@ - org.onap.oparent oparent 1.0.0-SNAPSHOT - ../oparent - 4.0.0 org.onap.multicloud.openstack.vmware multicloud-vio 1.0.0-SNAPSHOT - multicloud-openstack-vmware pom - - - vio - - - - - - com.mycila - license-maven-plugin - 2.3 - - - **\*.java - - - - - org.apache.maven.plugins - maven-release-plugin - - - org.apache.maven.plugins - maven-compiler-plugin - 3.3 - - 1.8 - 1.8 - - - - org.apache.maven.plugins - maven-deploy-plugin - 2.7 - - 2 - - - - + multicloud-opentack-vmware + multicloud vio diff --git a/version.properties b/version.properties new file mode 100644 index 0000000..639c1f7 --- /dev/null +++ b/version.properties @@ -0,0 +1,28 @@ +#!/bin/bash +# Copyright (c) 2017 VMware, Inc. +# +# 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. + +# Versioning variables +# 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=1 +minor=1 +patch=0 + +base_version=${major}.${minor}.${patch} + +# Release must be completed with git revision # in Jenkins +release_version=${base_version} +snapshot_version=${base_version}-SNAPSHOT diff --git a/vio/docker/instance-run.sh b/vio/docker/instance-run.sh index 2393c5d..d01cebb 100755 --- a/vio/docker/instance-run.sh +++ b/vio/docker/instance-run.sh @@ -1,7 +1,5 @@ #!/bin/bash -v -redis-server & - cd ./vio ./run.sh diff --git a/vio/pom.xml b/vio/pom.xml index dd05ffe..0c60fac 100644 --- a/vio/pom.xml +++ b/vio/pom.xml @@ -26,7 +26,7 @@ multicloud-vio 1.0.0-SNAPSHOT pom - multicloud/opentack/vmware + multicloud-opentack-vmware multicloud vio diff --git a/vio/version.properties b/vio/version.properties index 5128787..7f86aa1 100644 --- a/vio/version.properties +++ b/vio/version.properties @@ -3,7 +3,7 @@ # because they are used in Jenkins, whose plug-in doesn't support major=1 -minor=0 +minor=1 patch=0 base_version=${major}.${minor}.${patch} -- cgit 1.2.3-korg