diff options
author | Jessica Wagantall <jwagantall@linuxfoundation.org> | 2024-04-29 11:25:27 -0700 |
---|---|---|
committer | Fiete Ostkamp <fiete.ostkamp@telekom.de> | 2024-04-30 06:16:22 +0000 |
commit | 102d324ec48a5b6bfa63df715c158c6b901cb843 (patch) | |
tree | 26c508e395ab92c25fc01231d7c2bd7c9507b2e1 | |
parent | dd5bbdc4704b91be74cc57be584efd9db99ee5c0 (diff) |
Fix: Add version.properties file0.0.9
Needed by Docker stage to manage the image version
Issue-ID: CIMAN-33
Change-Id: Ia30e043fd516aa62bc3b7e53b6a6844754131d3a
Signed-off-by: Jessica Wagantall <jwagantall@linuxfoundation.org>
-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..55a18bc --- /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=0
+minor=0
+patch=9
+
+base_version=${major}.${minor}.${patch}
+
+# Release must be completed with git revision # in Jenkins
+release_version=${base_version}
+snapshot_version=${base_version}-SNAPSHOT
\ No newline at end of file |