Update Jenkinsfile

This commit is contained in:
Andrea Cavalli 2020-10-15 13:04:34 +02:00
parent 284f952da0
commit 5b5036a0af
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-15'
image 'maven:3.6.3-openjdk-13'
args '-v $HOME:/var/maven'
reuseNode true
}
@ -44,7 +44,7 @@ pipeline {
stage("Release") {
agent {
docker {
image 'maven:3.6.3-openjdk-15'
image 'maven:3.6.3-openjdk-13'
args '-v $HOME:/var/maven'
reuseNode true
}