blob: b69e8d0566b1f669b807d23a42328b32b72a3a37 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# 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=4
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
tags=latest ${base_version}-STAGING-latest
|