sonar-project.properties.in
1012 Bytes
#sonar properties file used by Jenkis
#----- Default Sonar server
sonar.host.url=http://localhost:@TREPS_SONAR_PORT@
#----- MySQL
sonar.jdbc.url=jdbc:mysql://localhost:@TREPS_MYSQL_PORT@/sonar_treps?useUnicode=true&characterEncoding=utf8
sonar.jdbc.driver=com.mysql.jdbc.Driver
#----- Global database settings
sonar.jdbc.username=sonar_treps
sonar.jdbc.password=sonar_treps
sonar.sourceEncoding=UTF-8
# required metadata
sonar.projectKey=TREPS:TREPS-Kernel
sonar.projectName=TREPS-Kernel
sonar.projectVersion=@TREPS_VERSION_MAJOR@.@TREPS_VERSION_MINOR@.@TREPS_VERSION_PATCH@
# path to source directories (required)
sonar.sources=@TREPS_KERNEL_SRC@/src
# Uncomment this line to analyse a project which is not a java project.
# The value of the property must be the key of the language.
sonar.language=c++
# Additional parameters
sonar.cxx.suffixes=.c,.h,.cpp
sonar.cxx.cppcheck.reportPath=test/Sonar/reports/cppcheck-report.xml
sonar.cxx.valgrind.reportPath=test/Sonar/reports/valgrind-report-*.xml