From 8c99a7b46a24b82a03f257954dc9b7dd9b5d47ad Mon Sep 17 00:00:00 2001 From: "andreas.dinauer" Date: Sun, 14 Sep 2025 10:21:44 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fix=20bug=20in=20Jenkinsfile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 18e73b4..76eb45f 100755 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -14,7 +14,7 @@ pipeline { stage('Build Quarkus application') { steps { script { - sh './gradlew build' + sh './mvnw clean package' } } }