Jenkins is not fetching the right Netty for some reason

This commit is contained in:
Telesphoreo 2022-06-13 22:30:35 -05:00
parent b4b765c036
commit 07bf264e8e
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -17,14 +17,14 @@ pipeline {
stage('applyPatches') {
steps {
withGradle {
sh './gradlew applyPatches'
sh './gradlew applyPatches --refresh-dependencies'
}
}
}
stage('paperclipJar') {
steps {
withGradle {
sh './gradlew createReobfPaperclipJar'
sh './gradlew createReobfPaperclipJar --refresh-dependencies'
}
}
}