diff --git a/Jenkinsfile b/Jenkinsfile index 4693d5d..33125fa 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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" } }