summaryrefslogtreecommitdiffstats
path: root/version.properties
diff options
context:
space:
mode:
authorying.yunlong <ying.yunlong@zte.com.cn>2017-09-05 09:43:04 +0800
committerying.yunlong <ying.yunlong@zte.com.cn>2017-09-05 09:43:04 +0800
commit24d9ff8abcdfa26ae39dcc428b239086d4d113e0 (patch)
tree9e1be98e464ed1079147899d952062f3434a14f8 /version.properties
parent80fb2b1775bfe832051a2450be8c1261856039e0 (diff)
Add svnfm-driver pom/properties
In order to build docker image, add svnfm-driver pom file and version.properties file. Change-Id: I66e36dda352163057b1077e4e23acde72c91e773 Issue-ID: VFC-268 Signed-off-by: ying.yunlong <ying.yunlong@zte.com.cn>
Diffstat (limited to 'version.properties')
-rw-r--r--version.properties28
1 files changed, 28 insertions, 0 deletions
diff --git a/version.properties b/version.properties
new file mode 100644
index 00000000..d7c69cd5
--- /dev/null
+++ b/version.properties
@@ -0,0 +1,28 @@
+#!/bin/bash
+# Copyright 2017 ZTE Corporation.
+#
+# 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