add new checkbox input parameter: add_maven_parent

pull/2/head
Roberto Cirillo 2 years ago
parent 8ad58c17cc
commit 985ada5740

7
Jenkinsfile vendored

@ -58,6 +58,11 @@ pipeline {
booleanParam(name: 'use_report_commits',
defaultValue: true,
description: 'Use the commits on the report or the latest is on master?')
booleanParam(name: 'add_maven_parent',
defaultValue: false,
description: 'Set to true if the maven-parent must be added to the notes')
}
@ -76,7 +81,7 @@ pipeline {
steps {
script {
for (int i = 0; i < components.size(); i++) {
if(components[i]['name'] != 'maven-parent'){
if((components[i]['name'] != 'maven-parent') || (add_maven_parent)){
stage(components[i]['name']) {
appendHeading(components[i]['name'], components[i]['version'],components[i]['gitRepo'], components[i]['commitID'])
createNotes(components[i]['name'], components[i]['gitRepo'],

Loading…
Cancel
Save