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 4 additions and 4 deletions
Showing only changes of commit 7a0ef754a1 - Show all commits

8
Jenkinsfile vendored
View File

@ -11,7 +11,7 @@ if (params.Type == 'SNAPSHOT-DRY-RUN') {
options = ''
maven_local_repo_path = "local-snapshots"
maven_settings_file = "jenkins-snapshots-dry-run-settings.xml"
maven_activation_property="";
maven_activation_property="-Pgcube-developer,dry-run";
maven_parent_file = "jenkins-snapshots-dry-run-settings.xml"
}
if (params.Type == 'SNAPSHOT') {
@ -27,7 +27,7 @@ if (params.Type == 'RELEASE-DRY-RUN') {
options = ''
maven_local_repo_path = "local-releases"
maven_settings_file = "jenkins-releases-dry-run-settings.xml"
maven_activation_property="-Djenkins-releases=true";
maven_activation_property="-Pdry-run -Djenkins-releases=true -DRelease";
maven_parent_file = "jenkins-releases-dry-run-settings.xml"
}
if (params.Type == 'STAGING') {
@ -35,7 +35,7 @@ if (params.Type == 'STAGING') {
options = ''
maven_local_repo_path = "local-staging"
maven_settings_file = "jenkins-staging-settings.xml"
maven_activation_property="-Djenkins-staging=true";
maven_activation_property="-Djenkins-staging=true -DRelease";
maven_parent_file = "jenkins-staging-dry-run-settings.xml"
}
if (params.Type == 'RELEASE') {
@ -43,7 +43,7 @@ if (params.Type == 'RELEASE') {
options = ''
maven_local_repo_path = "local-releases"
maven_settings_file = "jenkins-releases-settings.xml"
maven_activation_property="-Djenkins-releases=true";
maven_activation_property="-Djenkins-releases=true -DRelease";
maven_parent_file = "jenkins-releases-dry-run-settings.xml"
}