diff --git a/build.gradle b/build.gradle index 0d4a19df6d..f0382936b6 100644 --- a/build.gradle +++ b/build.gradle @@ -212,7 +212,9 @@ subprojects { // the plugin seems to not detect our non-standard build-layout property "sonar.junit.reportPaths", "$projectDir/build/test-results/test" - property "sonar.coverage.jacoco.xmlReportPaths", "$projectDir/build/reports/jacoco/test/jacocoTestReport.xml" + + // the Gradle run will report an invalid directory for 'ooxml-schema', but it seems to still work fine + property "sonar.coverage.jacoco.xmlReportPaths", "$projectDir/build/reports/jacoco/test/jacocoTestReport.xml" } } } diff --git a/jenkins/create_jobs.groovy b/jenkins/create_jobs.groovy index 85f09a0da0..9438f91c5e 100644 --- a/jenkins/create_jobs.groovy +++ b/jenkins/create_jobs.groovy @@ -66,7 +66,9 @@ def poijobs = [ [ name: 'POI-DSL-no-scratchpad', trigger: triggerSundays, noScratchpad: true ], [ name: 'POI-DSL-SonarQube', jdk: '1.11', trigger: 'H 7 * * *', maven: true, sonar: true, skipcigame: true, - email: 'kiwiwings@apache.org' + email: 'kiwiwings@apache.org', + // replaced by Gradle-based build now + disabled: 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