-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsonar-project.properties
More file actions
30 lines (25 loc) · 2.06 KB
/
sonar-project.properties
File metadata and controls
30 lines (25 loc) · 2.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# must be unique in a given SonarQube instance
sonar.projectKey=Wizard
# this is the name and version displayed in the SonarQube UI. Was mandatory prior to SonarQube 6.1.
sonar.projectName=Wizard
sonar.projectVersion=1.0
sonar.binaries=./app/build/intermediates/javac
sonar.java.binaries=./WizardServer/build/classes/java/main,./libnetwork/build/classes/java/main
# sonar.java.binaries=./app/build/intermediates/javac/debug/classes,./WizardServer/build/classes/java/main,./libnetwork/build/classes/java/main
sonar.java.test.binaries=./WizardServer/build/classes/java/test,./libnetwork/build/classes/java/test
# sonar.java.test.binaries=./app/build/intermediates/javac/debugUnitTest,./WizardServer/build/classes/java/test,./libnetwork/build/classes/java/test
# set java version
sonar.java.source=8
# Path is relative to the sonar-project.properties file. Replace "BACKSLASH" by "SLASH" on Windows.
# This property is optional if sonar.modules is set.
sonar.sources=./libnetwork/src/main/java,./WizardServer/src/main/java
# sonar.sources=./app/src/main/java,./libnetwork/src/main/java,./WizardServer/src/main/java
sonar.test=./libnetwork/src/test/java,./WizardServer/src/test/java
# sonar.test=./app/src/androidTest/java,./app/src/test/java,./libnetwork/src/test/java,./WizardServer/src/test/java
# use some plugin to recognize test results
sonar.junit.reportPaths=./WizardServer/build/test-results/test,./libnetwork/build/test-results/test
# sonar.junit.reportPaths=./app/build/test-results/testDebugUnitTest,./WizardServer/build/test-results/test,./libnetwork/build/test-results/test
# sonar.jacoco.reportPaths=./app/build/jacoco/testDebugUnitTest.exec
sonar.coverage.jacoco.xmlReportPaths=./WizardServer/build/reports/jacoco/test/jacocoTestReport.xml,./libnetwork/build/reports/jacoco/test/jacocoTestReport.xml
# sonar.coverage.jacoco.xmlReportPaths=./app/build/reports/jacoco/jacocoTestReport/jacocoTestReport.xml,./WizardServer/build/reports/jacoco/test/jacocoTestReport.xml,./libnetwork/build/reports/jacoco/test/jacocoTestReport.xml
sonar.androidLint.reportPaths=./app/build/reports/lint-results.xml