From 50545c3c220b109e2ae503a6c9de9721f6fce465 Mon Sep 17 00:00:00 2001 From: Roberto Cirillo Date: Thu, 3 Oct 2019 17:25:08 +0200 Subject: [PATCH] added new stage Distribution --- Jenkinsfile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 1780489..7efa55b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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" + } + } } }