From e405b681efaf3c08cadb57d34e7c4c7bd4aa538e Mon Sep 17 00:00:00 2001 From: Manuele Simi Date: Tue, 28 May 2019 09:00:59 -0400 Subject: [PATCH] First draft of the pipeline script. --- Jenkinsfile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Jenkinsfile diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..9cf1ac2 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,12 @@ +node { + stage('build core components') { + echo "will deploy artifacts of type: ${params.Type}" + withMaven(jdk: 'OpenJDK 8') { + build 'maven-parent' + build 'gcube-bom' + build 'authorization-common-library' + build 'gxRest' + } + } +} +