-
Notifications
You must be signed in to change notification settings - Fork 1
/
sonar-project.properties
71 lines (56 loc) · 2.69 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
68
69
70
##########################
# Required configuration #
##########################
sonar.projectKey=com.mobileforming.ios.module.gcf
sonar.projectName=mobileforming-ios-module-gcf
sonar.projectVersion=0.0.1
sonar.language=swift
# Project description
sonar.projectDescription=mobileforming GCF
# Path to source directories
sonar.sources=./GenericConnectionFramework
# Path to test directories (comment if no test)
sonar.tests=./GenericConnectionFrameworkTests
# 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.workspace=myApplication.xcworkspace
sonar.swift.workspace=./GenericConnectionFramework.xcworkspace
sonar.swift.project=./GenericConnectionFramework.xcodeproj
# Scheme to build your application
sonar.swift.appScheme=GenericConnectionFramework
# Specify your appname.
# This will be something like "myApp"
# Use when basename is different from targeted scheme.
# Or when slather fails with 'No product binary found'
sonar.swift.appName=GenericConnectionFramework
# Scheme to build and run your tests (comment following line of you don't have any tests)
sonar.swift.testScheme=GenericConnectionFramework
sonar.swift.simulator=platform=iOS Simulator,name=iPhone 7,OS=10.3
##########################
# 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/
# 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.cobertura.reportPath=./test-reports/cobertura.xml
#sonar.java.coveragePlugin=cobertura
#sonar.swift.coveragePlugin=cobertura
#sonar.swift.coverage.reportPattern=./test-reports/cobertura.xml
sonar.swift.coverage.reportPath=./Coverage.report
# 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.report=sonar-reports/oclint.xml
# Paths to exclude from coverage report (tests, 3rd party libraries etc.)
#sonar.objectivec.excludedPathsFromCoverage=pattern1,pattern2
sonar.swift.excludedPathsFromCoverage=.*Tests.*,.*fastlane.*,.*Pods.*
# Project SCM settings
# sonar.scm.enabled=true
# sonar.scm.url=scm:git:https://...