# Sonar project key which you provide while creating project in sonarqube server # Ex:- trace-hierarchy-dependency # Currently, its handled in pipeline. Keep the default value sonar.projectKey=##ProjectSonarKey## # Sonar project name which you provide while creating project in sonarqube server # Ex:- trace-hierarchy-dependency # Currently, its handled in pipeline. Keep the default value sonar.projectName=##ProjectSonarKey## # Path of project directory. Keep the default value. # Currently, this is set to the path of directory in sonar scanner container with which actual git project will be mounted sonar.projectBaseDir=/usr/src # The directories containing main source files. Can be kept as default. sonar.sources=./ # Files or folders that should be excluded from sonar scan. # Currently its the default files, but you can add the files if needed with comma-seperation sonar.exclusions=**/test/**, **/serviceWorker.js, **/coverage/**, **/interface/** # Path of coverge file lcov.info # Currently its set to default one sonar.javascript.lcov.reportPaths=coverage/lcov.info # Encoding of the source code. Keep the default value sonar.sourceEncoding=UTF-8 # Url of sonarqube server. # Since, its handled in pipeline. Keep the default value sonar.host.url=##SonarServerURL## # Project token you get while creating the project in sonarqube # Currently, its handled in pipeline. Keep the default value sonar.login=##ProjectSonarLogin##