From 62ef36a67d6e5a3c7c18bf275483e0f3b76a6ebc Mon Sep 17 00:00:00 2001 From: OZGCloud <ozgcloud@mgm-tp.com> Date: Tue, 2 Aug 2022 11:26:24 +0200 Subject: [PATCH] rename build image --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index a2b5ad6c..8b04ee36 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -44,11 +44,11 @@ pipeline { script { FAILED_STAGE=env.STAGE_NAME } - container("maven-17"){ + container("quarkus-22"){ sh 'mvn --version' configFileProvider([configFile(fileId: 'maven-settings', variable: 'MAVEN_SETTINGS')]) { //sh 'mvn -s $MAVEN_SETTINGS clean install -Dmaven.wagon.http.retryHandler.count=3' - sh 'mvn -s $MAVEN_SETTINGS package -Pnative -Dquarkus.native.container-build=true -Dquarkus.package.type=native-sources' + sh 'mvn -s $MAVEN_SETTINGS package -Pnative -Dquarkus.native.container-build=true' } } } @@ -184,4 +184,4 @@ String getElementAccessToken() { withCredentials([string(credentialsId: 'element-login-json', variable: 'LOGIN_JSON')]) { return readJSON ( text: sh (script: '''curl -XPOST -d \"$LOGIN_JSON\" https://matrix.ozg-sh.de/_matrix/client/v3/login''', returnStdout: true)).access_token } -} \ No newline at end of file +} -- GitLab