Make gradlew executable in Jenkinsfile

This commit is contained in:
2025-06-28 04:45:07 +02:00
parent cd8cde7bc1
commit 127c0ab508
Vendored
+1
View File
@@ -3,6 +3,7 @@ pipeline {
stages {
stage('Gradle') {
steps {
sh 'chmod +x ./gradlew'
sh './gradlew build'
}
}