-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsonar-project.properties
36 lines (30 loc) · 1.31 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
# Enable preview mode, so the concurrent run will work
sonar.analysis.mode=preview
# Properties specific to the C/C++ analyzer:
sonar.cfamily.build-wrapper-output=build_wrapper_output_directory
sonar.cfamily.gcov.reportsPath=.
sonar.cfamily.threads=4
sonar.cxx.compiler.charset=UTF-8
# =====================================================
# Project
# =====================================================
# <replace with your SonarCloud organization key>
sonar.organization=tiagomssantos
# <replace with the key generated when setting up the project on SonarCloud>
sonar.projectKey=TiagoMSSantos_MobileRT
sonar.projectName=MobileRT
sonar.projectVersion=1.0-SNAPSHOT
sonar.inclusions='**/src/**/*.java,**/src/**/*.kt,**/*.cpp,**/*.hpp'
sonar.exclusions='**/Unit_Testing/**,**/test**,**/**Generated**,**/third_party**,**/build**'
sonar.verbose=true
sonar.log.level=TRACE
sonar.scm.disabled=false
sonar.scm.exclusions.disabled=false
# =====================================================
# Properties that will be shared amongst all modules
# =====================================================
# SQ standard properties
# relative paths to source directories. More details and properties are described
# in https://sonarcloud.io/documentation/project-administration/narrowing-the-focus/
sonar.sources=app/
sonar.sourceEncoding=UTF-8