]> source.dussan.org Git - poi.git/commitdiff
Jenkins DSL: JDK 1.6 is default anyway, add Findbugs-download-workaround to the ...
authorDominik Stadler <centic@apache.org>
Sun, 11 Dec 2016 10:54:44 +0000 (10:54 +0000)
committerDominik Stadler <centic@apache.org>
Sun, 11 Dec 2016 10:54:44 +0000 (10:54 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1773558 13f79535-47bb-0310-9956-ffa450edef68

jenkins/create_jobs.groovy

index 09a3cbd6057e7bca7efc76db5d4fa8d92bc4d631..f17956d45aaa5ab065774b5b59eb8ce93d143dde 100644 (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
     ],