diff options
author | Areli Fuss <af732p@att.com> | 2017-09-10 13:06:44 +0300 |
---|---|---|
committer | Areli Fuss <af732p@att.com> | 2017-09-10 13:06:44 +0300 |
commit | 500e67bff859c9f194b8c901bfe84148c0bffd72 (patch) | |
tree | 6f3c8ca495fd1cbb2c8e8e3aaa6b0be42bcdbb64 | |
parent | c044432ad9ec68554b12500f6ab1586f92f4d109 (diff) |
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 <af732p@att.com>
-rw-r--r-- | version.properties | 13 |
1 files changed, 13 insertions, 0 deletions
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 |