diff options
author | PJ Fanning <fanningpj@apache.org> | 2022-12-22 10:59:41 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2022-12-22 10:59:41 +0000 |
commit | 3cc8f54a20a57e4851505dcfff96815fa20b9b5c (patch) | |
tree | 5e9441c670fdde5a604b9c4c38ffb79692896690 /jenkins/create_jobs.groovy | |
parent | 3532fd2c3f343484fa37ba4e323bf3d6d44b480d (diff) | |
download | poi-3cc8f54a20a57e4851505dcfff96815fa20b9b5c.tar.gz poi-3cc8f54a20a57e4851505dcfff96815fa20b9b5c.zip |
try ant for jdk 20 build due to policeman issues
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1906161 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'jenkins/create_jobs.groovy')
-rw-r--r-- | jenkins/create_jobs.groovy | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jenkins/create_jobs.groovy b/jenkins/create_jobs.groovy index f4190e4901..3e03996d3f 100644 --- a/jenkins/create_jobs.groovy +++ b/jenkins/create_jobs.groovy @@ -461,7 +461,7 @@ poijobs.each { poijob -> } else { ant { targets(['clean', 'jenkins'] + (poijob.properties ?: [])) - prop('coverage.enabled', true) + prop('coverage.enabled', !poijob.skipSpotbugs) // Properties did not work, so I had to use targets instead //properties(poijob.properties ?: '') antInstallation(antRT) |