From 89122cfa4b6228f2cefe9c6597c82d7420e959e8 Mon Sep 17 00:00:00 2001 From: Teriuihi Date: Fri, 18 Oct 2024 19:27:23 +0200 Subject: [PATCH] Update Gradle build command in Jenkinsfile Revised the Gradle stage to use 'gradlew build' instead of 'gradlew shadowJar' for better compatibility. This change ensures the build process aligns with the default Gradle task and simplifies the Jenkins pipeline configuration. --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 38fb7e5..511e2f4 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -3,7 +3,7 @@ pipeline { stages { stage('Gradle') { steps { - sh 'bash gradlew shadowJar' + sh 'gradlew build' } } stage('Archive') {