forked from hyperledger-iroha/iroha-dco
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsonar-project.properties
More file actions
26 lines (21 loc) · 886 Bytes
/
sonar-project.properties
File metadata and controls
26 lines (21 loc) · 886 Bytes
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
sonar.sourceEncoding=UTF-8
sonar.projectKey=hyperledger:iroha
sonar.projectName=Iroha
sonar.host.url=https://sonar.soramitsu.co.jp
sonar.language=c++
sonar.cpp.std=c++14
sonar.sources=irohad,iroha-cli,libs,shared_model
sonar.binaries=build/bin,build/test_bin
sonar.exclusions=**/*.txt
sonar.cxx.compiler.parser=GCC
sonar.artifact.path=build
sonar.tests=test
sonar.cxx.jsonCompilationDatabase=build/compile_commands.json
sonar.cxx.coverage.reportPath=build/reports/gcovr*.xml
sonar.cxx.coverage.itReportPath=build/reports/gcovr*.xml
sonar.cxx.coverage.overallReportPath=build/reports/gcovr*.xml
sonar.cxx.valgrind.reportPath=build/reports/valgrind*.xml
sonar.cxx.cppcheck.reportPath=build/reports/cppcheck*.xml
sonar.cxx.vera.reportPath=build/reports/vera*.xml
sonar.cxx.xunit.reportPath=build/reports/xunit*.xml
sonar.cxx.includeDirectories=shared_model,libs,irohad,test,iroha-cli