From 500e67bff859c9f194b8c901bfe84148c0bffd72 Mon Sep 17 00:00:00 2001 From: Areli Fuss Date: Sun, 10 Sep 2017 13:06:44 +0300 Subject: Add version.properties file Add version.properties file to support versioning for both snapshot and release Change-Id: I5f3db8e670f12bbb95c4f0657c2af5840e067fa3 Issue-Id: SDC-245 Signed-off-by: Areli Fuss --- version.properties | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 version.properties diff --git a/version.properties b/version.properties new file mode 100644 index 0000000..bf3f0bf --- /dev/null +++ b/version.properties @@ -0,0 +1,13 @@ +########################################################### +# 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=0 +patch=0 + +base_version=${major}.${minor}.${patch} + +release_version=${base_version} +snapshot_version=${base_version}-SNAPSHOT -- cgit 1.2.3-korg