Enable Gradle Wrapper to avoid running with an unsupported local version

This may cause the strange "PrecompiledProjectScript" failures that we see currently

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1888449 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Dominik Stadler 2021-04-06 20:23:44 +00:00
parent 965dd2d6fc
commit 572c1d9285
1 changed files with 2 additions and 2 deletions

View File

@ -395,7 +395,7 @@ poijobs.each { poijob ->
tasks('check')
tasks('jacocoTestReport')
tasks('sonarqube')
useWrapper(false)
useWrapper(true)
}
}
publishers {
@ -416,7 +416,7 @@ poijobs.each { poijob ->
if(poijob.gradle) {
gradle {
tasks('check')
useWrapper(false)
useWrapper(true)
}
} else if (poijob.noScratchpad) {
ant {