diff options
author | lizi00164331 <li.zi30@zte.com.cn> | 2017-08-10 11:05:38 +0800 |
---|---|---|
committer | lizi00164331 <li.zi30@zte.com.cn> | 2017-08-10 11:05:38 +0800 |
commit | 27e486c2a58e2143169bd3f9d894eefddca261d3 (patch) | |
tree | 3c20007fd41ea76fecbdd0418127031239989679 | |
parent | d1225dbb01f0759ef8726fa3ea05ad88c6bf54bc (diff) |
Fix the bug Jenkins failed.
Add the version.properties according to the log of Jenkins.
Change-Id: I986c946c784baac7d826a3b540c446f7725ec34f
Issue-ID: AAI-146
Signed-off-by: lizi00164331 <li.zi30@zte.com.cn>
-rw-r--r-- | .gitignore | 6 | ||||
-rw-r--r-- | .gitreview | 4 | ||||
-rw-r--r-- | version.properties | 13 |
3 files changed, 23 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f402f8c --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +.classpath +.project +.settings/ +target/ +logs/ +debug-logs/
\ No newline at end of file diff --git a/.gitreview b/.gitreview new file mode 100644 index 0000000..8941ef5 --- /dev/null +++ b/.gitreview @@ -0,0 +1,4 @@ +[gerrit] +host=gerrit.onap.org +port=29418 +project=aai/esr-gui.git diff --git a/version.properties b/version.properties new file mode 100644 index 0000000..2391453 --- /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=2
+
+base_version=${major}.${minor}.${patch}
+
+# Release must be completed with git revision # in Jenkins
+release_version=${base_version}
+snapshot_version=${base_version}-SNAPSHOT
|