From e13eaa156c93b33ca6b4cd71289a30f0c199e99f Mon Sep 17 00:00:00 2001 From: Andrea Cavalli Date: Wed, 7 Oct 2020 01:19:30 +0200 Subject: [PATCH] Update Jenkinsfile --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index f1000f8..014dba1 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -51,7 +51,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 } @@ -64,7 +64,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 } @@ -79,7 +79,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 }