added new stage Distribution

This commit is contained in:
Roberto Cirillo 2019-10-03 17:25:08 +02:00
parent 18b787ea51
commit 50545c3c22
1 changed files with 7 additions and 0 deletions

7
Jenkinsfile vendored
View File

@ -170,6 +170,13 @@ pipeline {
echo "Done with Portlets components"
}
}
stage('build Distribution components') {
steps {
buildComponents items: jsonConfig.gCube_release.Components.Distribution?.collect { "${it?.name}" },
"${maven_settings_file}", "${maven_local_repo_path}"
echo "Done with Portlets components"
}
}
}
}