-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- add version.properties file - use version defined there in the buildinfo - resolve logback + slf4j conflict Issue-ID: PORTALNG-91 Change-Id: Ie30edcbe664a6890243660b9ce5ff95bad1df7d1 Signed-off-by: Fiete Ostkamp <[email protected]>
- Loading branch information
Fiete Ostkamp
authored and
Fiete Ostkamp
committed
May 7, 2024
1 parent
1e3cc21
commit 852ef73
Showing
4 changed files
with
52 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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=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 |