You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by ce...@apache.org on 2016/12/11 10:54:44 UTC

svn commit: r1773558 - /poi/trunk/jenkins/create_jobs.groovy

Author: centic
Date: Sun Dec 11 10:54:44 2016
New Revision: 1773558

URL: http://svn.apache.org/viewvc?rev=1773558&view=rev
Log:
Jenkins DSL: JDK 1.6 is default anyway, add Findbugs-download-workaround to the -old-xerces job as well

Modified:
    poi/trunk/jenkins/create_jobs.groovy

Modified: poi/trunk/jenkins/create_jobs.groovy
URL: http://svn.apache.org/viewvc/poi/trunk/jenkins/create_jobs.groovy?rev=1773558&r1=1773557&r2=1773558&view=diff
==============================================================================
--- poi/trunk/jenkins/create_jobs.groovy (original)
+++ poi/trunk/jenkins/create_jobs.groovy Sun Dec 11 10:54:44 2016
@@ -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
     ],



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org