Gcov project in Sonar

I create dummy project to upload it via gcov to sonar.
During upload I got this massage:
11:16:57.205 DEBUG: ‘gcov’ skipped because one of the required properties is missing.
Project uploaded with 0 coverage

sonar-project.properties content:
sonar.host.url=xxxxxx
sonar.projectKey=gcov_test
sonar.projectName=gcov_test
sonar.projectVersion=0.1
sonar.sourceEncoding=UTF-8
sonar.language=c
sonar.sources=./
sonar.cfamily.build-wrapper-output=./out/
#sonar.c.file.suffixes=-
#sonar.cpp.file.suffixes=-
#sonar.objc.file.suffixes=-
#sonar.tests=relative/path/to/tests

#sonar.cfamily.gcov.reportPaths=/.autodirect/fwgwork/roeyd/tmp/code_coverage_for_bullseye/output/src/
sonar.cfamily.gcov.reportPaths=./
#sonar.cfamily.gcov.reportPaths=output/src/*

Hi @benyahu,

the correct property is sonar.cfamily.gcov.reportsPath, you misspelled it, see the documentation page: Test Coverage.