First draft of the pipeline script.

This commit is contained in:
Manuele Simi 2019-05-28 09:00:59 -04:00
parent e4a3d3ad6c
commit e405b681ef
1 changed files with 12 additions and 0 deletions

12
Jenkinsfile vendored Normal file
View File

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