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

4
Jenkinsfile vendored
View File

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