change settings filename used by SNAPSHOT* build

This commit is contained in:
Roberto Cirillo 2022-03-07 12:18:04 +01:00
parent 2aea8a5048
commit 841a5489ff
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -10,14 +10,14 @@ if (params.Type == 'SNAPSHOT-DRY-RUN') {
echo "Configure Maven for SNAPSHOT-DRY-RUN artifacts"
options = ''
maven_local_repo_path = "local-snapshots"
maven_settings_file = "gcube-settings.xml"
maven_settings_file = "gcube-official.xml"
maven_activation_property="-Pdry-run";
}
if (params.Type == 'SNAPSHOT') {
echo "Configure Maven for SNAPSHOT artifacts"
options = ''
maven_local_repo_path = "local-snapshots"
maven_settings_file = "gcube-settings.xml"
maven_settings_file = "gcube-official.xml"
maven_activation_property='';
}
if (params.Type == 'RELEASE-DRY-RUN') {