feature/22849 #2

Merged
roberto.cirillo merged 16 commits from feature/22849 into master 2022-03-07 16:28:47 +01:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 841a5489ff - Show all commits

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') {