1
0

Update Jenkinsfile

This commit is contained in:
Andrea Cavalli 2020-10-07 01:18:36 +02:00
parent 6ae93cfed1
commit 5c7bf04cfc

6
Jenkinsfile vendored
View File

@ -67,7 +67,7 @@ pipeline {
stage("Build & Deploy SNAPSHOT") {
agent {
docker {
image 'maven:3.6.3'
image 'maven:3.6.3-openjdk-11'
args '-v $HOME:/var/maven'
reuseNode true
}
@ -80,7 +80,7 @@ pipeline {
stage("Release") {
agent {
docker {
image 'maven:3.6.3'
image 'maven:3.6.3-openjdk-11'
args '-v $HOME:/var/maven'
reuseNode true
}
@ -95,7 +95,7 @@ pipeline {
stage('Deliver') {
agent {
docker {
image 'maven:3.6.3'
image 'maven:3.6.3-openjdk-11'
args '-v $HOME:/var/maven'
reuseNode true
}