defined maven_activation_property. Change maven_activation_property

empty value from "" to ''
This commit is contained in:
Roberto Cirillo 2022-02-21 15:03:22 +01:00
parent d3243c1ffe
commit e737501db6
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -2,7 +2,7 @@
import org.yaml.snakeyaml.Yaml
// set the build options according to the Type of build
def (options, maven_local_repo_path, maven_settings_file, maven_parent_file) = ['', '', '', '']
def (options, maven_local_repo_path, maven_settings_file, maven_activation_property, maven_parent_file) = ['', '', '', '', '']
def agent_root_folder = '/var/lib/jenkins/.m2'
def verbose = true
def resume = params.resume_from
@ -19,7 +19,7 @@ if (params.Type == 'SNAPSHOT') {
options = ''
maven_local_repo_path = "local-snapshots"
maven_settings_file = "jenkins-snapshots-settings.xml"
maven_activation_property="";
maven_activation_property='';
maven_parent_file = "jenkins-snapshots-dry-run-settings.xml"
}
if (params.Type == 'RELEASE-DRY-RUN') {