Run gradlew clean before building

This commit is contained in:
Len 2024-02-05 18:55:03 +01:00
parent ef411ac9a1
commit 8eb09282d2

1
Jenkinsfile vendored
View File

@ -3,6 +3,7 @@ pipeline {
stages {
stage('Gradle') {
steps {
sh './gradlew clean'
sh './gradlew build'
}
}