Added NoDeps stage

This commit is contained in:
Roberto Cirillo 2019-10-04 15:47:02 +02:00
parent 131b73de0b
commit 0c538c01f6
1 changed files with 8 additions and 1 deletions

9
Jenkinsfile vendored
View File

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