forked from betawins/sabear_simplecutomerapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsonar-project.properties
43 lines (20 loc) · 1003 Bytes
/
sonar-project.properties
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
31
32
33
34
35
36
37
38
39
40
41
42
# Required metadata
sonar.projectKey=SimpleCustomerAppKey:SimpleCustomerApp
sonar.projectName=SimpleCustomerApp
sonar.projectVersion=2.0
# Paths to source directories.
# Paths are relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
# Do not put the "sonar-project.properties" file in the same directory with the source code.
# (i.e. never set the "sonar.sources" property to ".")
sonar.sources = SimpleCustomerApp\\src
sonar.java.coveragePlugin=cobertura
sonar.core.codeCoveragePlugin=cobertura
# Adding unit testing results into SonarQube
sonar.junit.reportsPath=\\SimpleCustomerApp\\Reports\\BuildsUTCResults\\data
# Adding code coverage testing results into SonarQube
sonar.cobertura.reportPath=\\SimpleCustomerApp\\Reports\\BuildsCodeCoverage\\cobertura-xml\\coverage.xml
# The value of the property must be the key of the language.
sonar.language=java
sonar.gallio.runner=IsolatedProcess
# Encoding of the source code
sonar.sourceEncoding=UTF-8