You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
property "sonar.tests", ['src/test/resources', 'src/test/scala', 'src/test/groovy'] // test src dirs
10
-
8
+
property 'sonar.sources', [
9
+
'src/main/resources',
10
+
'src/main/scala'] // src dirs
11
+
property "sonar.tests", [
12
+
'src/test/resources',
13
+
'src/test/scala',
14
+
'src/test/groovy'] // test src dirs
11
15
// reports stuff (for all languages)
12
-
property 'sonar.junit.reportPaths', ['build/test-results/allTests'] // Comma-delimited list of paths to Surefire XML-format reports.
13
-
16
+
property 'sonar.junit.reportPaths', [
17
+
'build/test-results/allTests'] // Comma-delimited list of paths to Surefire XML-format reports.
14
18
// unit tests reports dirs
15
-
property "sonar.coverage.jacoco.xmlReportsPath", ["build/reports/jacoco/test/jacocoTestReport.xml"] // Comma-separated list of paths to JaCoCo (jacoco.xml) report files.
"build/reports/jacoco/test/jacocoTestReport.xml"] // Comma-separated list of paths to JaCoCo (jacoco.xml) report files.
16
21
// scapegoat report dir
17
22
//property "sonar.scala.scapegoat.reportPaths", ["build/reports/scapegoat/src/scapegoat-scalastyle.xml", "build/reports/scapegoat/testsrc/scapegoat-scalastyle.xml"] // Comma-delimited list of paths to Scapegoat reports in the Scalastyle format
18
23
// spotbugs report dir
19
-
property "sonar.java.spotbugs.reportPaths", ["build/reports/spotbugs/main.xml","build/reports/spotbugs/test.xml"] // Comma-delimited list of paths to reports from SpotBugs
20
-
24
+
property "sonar.java.spotbugs.reportPaths", [
25
+
"build/reports/spotbugs/main.xml",
26
+
"build/reports/spotbugs/test.xml"] // Comma-delimited list of paths to reports from SpotBugs
21
27
// scala specific stuff
22
28
//property 'sonar.scala.coverage.reportPaths', ''//todo enable when scoverage gradle plugin is available for scala 2.13
0 commit comments