Use Gradle wrapper

This commit is contained in:
Telesphoreo 2022-04-07 00:05:56 -05:00
parent ac5ee6b0d7
commit 3feb510c17

2
Jenkinsfile vendored
View File

@ -3,11 +3,13 @@ pipeline {
stages { stages {
stage('build') { stage('build') {
steps { steps {
withGradle {
sh './gradlew applyPatches --no-daemon' sh './gradlew applyPatches --no-daemon'
sh './gradlew paperclipJar --no-daemon' sh './gradlew paperclipJar --no-daemon'
} }
} }
} }
}
post { post {
always { always {
archiveArtifacts artifacts: 'build/libs/*.jar', fingerprint: true archiveArtifacts artifacts: 'build/libs/*.jar', fingerprint: true