]> source.dussan.org Git - poi.git/commitdiff
Jenkins DSL: Use JDK 11 for SonarQube Gradle build and try to make properties work
authorDominik Stadler <centic@apache.org>
Sun, 25 Oct 2020 19:29:46 +0000 (19:29 +0000)
committerDominik Stadler <centic@apache.org>
Sun, 25 Oct 2020 19:29:46 +0000 (19:29 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1882848 13f79535-47bb-0310-9956-ffa450edef68

jenkins/create_jobs.groovy

index 3c03b0d160db04a8d4c5271174396ee4247033db..ff3510adaddb7ac8a39810c744fdd3937eec3823 100644 (file)
@@ -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)
                 }