TiagoMSSantos/MobileRT

View on GitHub
sonar-project.properties

Summary

Maintainability
Test Coverage
# 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