Jenkins DSL: JDK 1.6 is default anyway, add Findbugs-download-workaround to the -old-xerces job as well

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1773558 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Dominik Stadler 2016-12-11 10:54:44 +00:00
parent 7041692dae
commit 42cd53076f
1 changed files with 6 additions and 3 deletions

View File

@ -11,7 +11,7 @@ H H * * 0
'''
def poijobs = [
[ name: 'POI-DSL-1.6', jdks: ['1.6'],
[ name: 'POI-DSL-1.6',
// workaround as Sourceforge does not accept any of the SSL ciphers in JDK 6 any more and thus we cannot download this jar
// as part of the Ant build
addShell: 'wget -O lib/findbugs-noUpdateChecks-2.0.3.zip http://downloads.sourceforge.net/project/findbugs/findbugs/2.0.3/findbugs-noUpdateChecks-2.0.3.zip?download='
@ -34,10 +34,13 @@ def poijobs = [
// some OOXML tests fail with strange XML parsing errors and missing JCE unlimited strength requirements
disabled: true, skipcigame: true
],
[ name: 'POI-DSL-old-Xerces', jdks: ['1.6'], trigger: triggerSundays,
[ name: 'POI-DSL-old-Xerces', trigger: triggerSundays,
shell: 'mkdir -p compile-lib && test -f compile-lib/xercesImpl-2.6.1.jar || wget -O compile-lib/xercesImpl-2.6.1.jar http://repo1.maven.org/maven2/xerces/xercesImpl/2.6.1/xercesImpl-2.6.1.jar\n',
// the property triggers using Xerces as XML Parser and previously showed some exception that can occur
properties: ['-Dadditionaljar=compile-lib/xercesImpl-2.6.1.jar']
properties: ['-Dadditionaljar=compile-lib/xercesImpl-2.6.1.jar'],
// workaround as Sourceforge does not accept any of the SSL ciphers in JDK 6 any more and thus we cannot download this jar
// as part of the Ant build
addShell: 'wget -O lib/findbugs-noUpdateChecks-2.0.3.zip http://downloads.sourceforge.net/project/findbugs/findbugs/2.0.3/findbugs-noUpdateChecks-2.0.3.zip?download='
],
[ name: 'POI-DSL-Maven', trigger: 'H */4 * * *', maven: true
],