-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsonar-project.properties
More file actions
23 lines (19 loc) · 928 Bytes
/
sonar-project.properties
File metadata and controls
23 lines (19 loc) · 928 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
sonar.projectKey=yourcompany_project_name
sonar.organization=yourcompany
# This is the name and version displayed in the SonarCloud UI.
#sonar.projectName=project-name
#sonar.projectVersion=1.0.0
# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
sonar.sources=.
sonar.exclusions=bin/**/*, cache/**/*, config/**/*, data/**/*, docker/**/*, public/coverage/**/*, public/swagger/**/*, samples/**/*, target/**/*, tests/**/*, node_modules/**/*
# Encoding of the source code. Default is default system encoding
# sonar.sourceEncoding=UTF-8
# Version
# sonar.javascript.version=11
# Tests
sonar.tests=tests
# sonar.test.exclusions=*.feature
sonar.tests.inclusions=**/*_spec.ts
sonar.coverageReportPaths=target/unit/report.xml, target/component/report.xml
sonar.javascript.lcov.reportPaths=target/unit/report.xml, target/component/report.xml
sonar.junit.reportsPath=target/unit/junit-report.xml