diff options
author | Andreas Beeker <kiwiwings@apache.org> | 2018-05-28 19:43:19 +0000 |
---|---|---|
committer | Andreas Beeker <kiwiwings@apache.org> | 2018-05-28 19:43:19 +0000 |
commit | c9924177d1e8f8f706125c4a0c50f951984752a2 (patch) | |
tree | 0d472830e8743442db42e44e2c52aced7c054771 /jenkins | |
parent | 89879146de635d9a10bf13ebea5b621a46aea208 (diff) | |
download | poi-c9924177d1e8f8f706125c4a0c50f951984752a2.tar.gz poi-c9924177d1e8f8f706125c4a0c50f951984752a2.zip |
clean ooxml-lib jars before build, because the typeloader class has been moved via #62355
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1832414 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'jenkins')
-rw-r--r-- | jenkins/create_jobs.groovy | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/jenkins/create_jobs.groovy b/jenkins/create_jobs.groovy index a3bf7b1936..ea1d541ab0 100644 --- a/jenkins/create_jobs.groovy +++ b/jenkins/create_jobs.groovy @@ -205,12 +205,14 @@ poijobs.each { poijob -> } } wrappers { - /* Plugin seems to be missing: Warning: (create_jobs.groovy, line 202) version 1.13 or later of plugin 'build-timeout' needs to be installed timeout { absolute(180) abortBuild() writeDescription('Build was aborted due to timeout') - }*/ + } + preBuildCleanup { + includePattern('**/ooxml-lib/ooxml*.jar') + } if(poijob.sonar) { configure { project -> project / buildWrappers << 'hudson.plugins.sonar.SonarBuildWrapper' {} |