From 4219478782427a2f6fedff0ef56594f898affc56 Mon Sep 17 00:00:00 2001 From: Roberto Cirillo Date: Wed, 16 Oct 2019 18:41:40 +0200 Subject: [PATCH] Update 'Jenkinsfile' fixed some echo messages --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index f97f9d0..cb4ef8e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -154,21 +154,21 @@ pipeline { steps { buildComponents items: jsonConfig.gCube_release.Components.CoreAuth?.collect { "${it.name}" }, "${maven_settings_file}", "${maven_local_repo_path}" - echo "Done with Core components" + echo "Done with CoreAuth components" } } stage('build CoreSmartGears components') { steps { buildComponents items: jsonConfig.gCube_release.Components.CoreSmartGears?.collect { "${it.name}" }, "${maven_settings_file}", "${maven_local_repo_path}" - echo "Done with Core components" + echo "Done with CoreSmartGears components" } } stage('build Common components') { steps { buildComponents items: jsonConfig.gCube_release.Components.Common?.collect { "${it.name}" }, "${maven_settings_file}", "${maven_local_repo_path}" - echo "Done with Core components" + echo "Done with Common components" } } stage('build PortalCore components') {