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.
This commit is contained in:
2024-10-18 19:27:23 +02:00
parent 2345f3b9a3
commit 89122cfa4b
Vendored
+1 -1
View File
@@ -3,7 +3,7 @@ pipeline {
stages { stages {
stage('Gradle') { stage('Gradle') {
steps { steps {
sh 'bash gradlew shadowJar' sh 'gradlew build'
} }
} }
stage('Archive') { stage('Archive') {