13 lines
302 B
Plaintext
13 lines
302 B
Plaintext
|
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'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|