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 2020/10/25 19:29:46 UTC

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

Author: centic
Date: Sun Oct 25 19:29:46 2020
New Revision: 1882848

URL: http://svn.apache.org/viewvc?rev=1882848&view=rev
Log:
Jenkins DSL: Use JDK 11 for SonarQube Gradle build and try to make properties work

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=1882848&r1=1882847&r2=1882848&view=diff
==============================================================================
--- poi/trunk/jenkins/create_jobs.groovy (original)
+++ poi/trunk/jenkins/create_jobs.groovy Sun Oct 25 19:29:46 2020
@@ -67,8 +67,8 @@ def poijobs = [
         [ name: 'POI-DSL-SonarQube', trigger: 'H 7 * * *', maven: true, sonar: true, skipcigame: true,
           email: 'kiwiwings@apache.org'
         ],
-        // set trigger empty as it is not stable yet, we can replace the Sonar Maven run when this is fully working
-        [ name: 'POI-DSL-SonarQube-Gradle', trigger: '', gradle: true, sonar: true, skipcigame: true
+        // set trigger empty as it is not stable yet, we can remove the Sonar Maven run when this is fully working
+        [ name: 'POI-DSL-SonarQube-Gradle', jdk: '1.11', trigger: '', gradle: true, sonar: true, skipcigame: true
         ],
         [ name: 'POI-DSL-Windows-1.8', trigger: 'H */12 * * *', windows: true, slaves: 'Windows'
         ],
@@ -396,9 +396,9 @@ poijobs.each { poijob ->
 
                 gradle {
                     switches('-PenableSonar')
-                    switches('-Psonar.login=${POI_SONAR_TOKEN}')
+                    switches('-Dsonar.login=${POI_SONAR_TOKEN}')
                     switches('-Dsonar.organization=apache')
-                    switches('-Psonar.projectKey=poi-parent')
+                    switches('-Dsonar.projectKey=poi-parent')
                     tasks('sonarqube')
                     useWrapper(false)
                 }



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