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' + } + } +} +