Update Jenkinsfile

This commit is contained in:
Andrea Cavalli 2020-10-15 13:10:19 +02:00
parent 5b5036a0af
commit bb140fedf2
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

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