-
Notifications
You must be signed in to change notification settings - Fork 38
/
sonar-project.properties
executable file
·68 lines (52 loc) · 2.36 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
##########################
# Required configuration #
##########################
sonar.projectKey=ios::projectKey
sonar.projectName=ios::profilename
sonar.projectVersion=1.0
sonar.language=objectivec
# Project description
sonar.projectDescription=Fake description
# Path to source directories 工程文件目录
sonar.sources=
# Path to test directories (comment if no test) 测试文件目录
sonar.tests=
# Code Sign 注意是Release版本的前面与描述文件 (V2.1版本已经不需要此设置)
# sonar.objectivec.codesign=
# sonar.objectivec.profilename=
# Xcode project configuration (.xcodeproj or .xcworkspace)
# -> If you have a project: configure only sonar.objectivec.project
# -> If you have a workspace: configure sonar.objectivec.workspace and sonar.objectivec.project
# and use the later to specify which project(s) to include in the analysis (comma separated list)
# !! 以下二选一 !!
sonar.objectivec.project=xx.xcodeproj
sonar.objectivec.workspace=xx.xcworkspace
# Scheme to build your application
sonar.objectivec.appScheme=
# Scheme to build and run your tests (comment following line of you don't have any tests)
sonar.objectivec.testScheme=
##########################
# Optional configuration #
##########################
# Encoding of the source code
sonar.sourceEncoding=UTF-8
# JUnit report generated by run-sonar.sh is stored in sonar-reports/TEST-report.xml
# Change it only if you generate the file on your own
# The XML files have to be prefixed by TEST- otherwise they are not processed
# sonar.junit.reportsPath=sonar-reports/
sonar.objectivec.junit.reportsPath=TEST-report.xml
# Cobertura report generated by run-sonar.sh is stored in sonar-reports/coverage.xml
# Change it only if you generate the file on your own
# sonar.objectivec.coverage.reportPattern=sonar-reports/coverage*.xml
sonar.objectivec.cobertura.reportPath=sonar-reports/coverage-SuYun.xml
# OCLint report generated by run-sonar.sh is stored in sonar-reports/oclint.xml
# Change it only if you generate the file on your own
sonar.objectivec.oclint.reportPath=oclint.xml
# Paths to exclude from coverage report (tests, 3rd party libraries etc.)
# sonar.objectivec.excludedPathsFromCoverage=pattern1,pattern2
# sonar.objectivec.excludedPathsFromCoverage=.*Tests.*
# Project SCM settings
sonar.scm.enabled=false
# sonar.scm.url=scm:git:https://...
sonar.host.url=
sonar.scm.provider=svn