diff --git a/build.gradle b/build.gradle index cd8420d1bd..5aa8bb8b79 100644 --- a/build.gradle +++ b/build.gradle @@ -185,6 +185,10 @@ subprojects { // as we currently use build// as project-basedir, we need to tell Sonar to use // the root-folder as "basedir" for the projects property "sonar.projectBaseDir", "$projectDir/../.." + + // 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/jacoco/test.exec" } } }