Use Gradle wrapper

This commit is contained in:
Telesphoreo 2022-04-07 00:05:56 -05:00
parent ac5ee6b0d7
commit 3feb510c17
1 changed files with 4 additions and 2 deletions

6
Jenkinsfile vendored
View File

@ -3,8 +3,10 @@ pipeline {
stages {
stage('build') {
steps {
sh './gradlew applyPatches --no-daemon'
sh './gradlew paperclipJar --no-daemon'
withGradle {
sh './gradlew applyPatches --no-daemon'
sh './gradlew paperclipJar --no-daemon'
}
}
}
}