diff --git a/Jenkinsfile b/Jenkinsfile index b42e1e4..d0c7cf7 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -3,21 +3,18 @@ pipeline { environment { GITHUB_BRANCH = "${BRANCH_NAME}" } - options { - buildDiscarder logRotator(artifactDaysToKeepStr: '', artifactNumToKeepStr: '', daysToKeepStr: '', numToKeepStr: '5') - } stages { stage('applyPatches') { steps { withGradle { - sh './gradlew applyPatches --no-daemon' + sh './gradlew applyPatches --no-daemon --refresh-dependencies' } } } stage('paperclipJar') { steps { withGradle { - sh './gradlew paperclipJar --no-daemon' + sh './gradlew paperclipJar --no-daemon --refresh-dependencies' } } }