Skip to content

Commit 7865dbf

Browse files
committed
HBX-3039: Update default values in Jenkinsfile
Signed-off-by: Koen Aers <[email protected]>
1 parent 50f983a commit 7865dbf

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ci/release/Jenkinsfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,24 +36,24 @@ pipeline {
3636
parameters {
3737
string(
3838
name: 'RELEASE_VERSION',
39-
defaultValue: '',
39+
defaultValue: '5.3.38.Final',
4040
description: 'The version to be released, e.g. 5.3.38.Final.',
4141
trim: true
4242
)
4343
string(
4444
name: 'DEVELOPMENT_VERSION',
45-
defaultValue: '',
45+
defaultValue: '5.3.39-SNAPSHOT',
4646
description: 'The next version to be used after the release, e.g. 5.3.39-SNAPSHOT.',
4747
trim: true
4848
)
4949
booleanParam(
5050
name: 'RELEASE_DRY_RUN',
51-
defaultValue: false,
51+
defaultValue: true,
5252
description: 'If true, just simulate the release, without pushing any commits or tags, and without uploading any artifacts or documentation.'
5353
)
5454
booleanParam(
5555
name: 'RELEASE_PUBLISH_AUTOMATICALLY',
56-
defaultValue: true,
56+
defaultValue: false,
5757
description: 'If true, staging repository will get closed and published automatically, otherwise the artifacts will only be uploaded and the publishing (releasing the staging repository) has to be performed manually at Maven Central portal.'
5858
)
5959
}

0 commit comments

Comments
 (0)