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:
Teriuihi 2024-10-18 19:27:23 +02:00
parent 2345f3b9a3
commit 89122cfa4b

2
Jenkinsfile vendored
View File

@ -3,7 +3,7 @@ pipeline {
stages {
stage('Gradle') {
steps {
sh 'bash gradlew shadowJar'
sh 'gradlew build'
}
}
stage('Archive') {