Added NoDeps stage
This commit is contained in:
parent
131b73de0b
commit
0c538c01f6
|
@ -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"
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue