-
Notifications
You must be signed in to change notification settings - Fork 7
/
sonar-project.properties
55 lines (41 loc) · 1.75 KB
/
sonar-project.properties
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#Configure here general information about the environment, such as SonarQube DB details for example
#No information about specific project should appear here
#----- Default SonarQube server
sonar.host.url=https://sonarcloud.io
#----- Default source code encoding
sonar.sourceEncoding=UTF-8
#----- Global database settings (not used for SonarQube 5.2+)
#sonar.jdbc.username=sonar
#sonar.jdbc.password=sonar
#----- PostgreSQL
#sonar.jdbc.url=jdbc:postgresql://localhost/sonar
#----- MySQL
#sonar.jdbc.url=jdbc:mysql://localhost:3306/sonar?useUnicode=true&characterEncoding=utf8
#----- Oracle
#sonar.jdbc.url=jdbc:oracle:thin:@localhost/XE
#----- Microsoft SQLServer
#sonar.jdbc.url=jdbc:jtds:sqlserver://localhost/sonar;SelectMethod=Cursor
#----- Project info
sonar.projectKey=-commonality_archetypes
sonar.projectName=archetypes
sonar.projectVersion=0.0.0
sonar.organization=commonality
sonar.login=$COMMONALITY_SONAR_TOKEN
# =====================================================
# Meta-data for the project
# =====================================================
sonar.links.homepage=https://github.com/commonality/archetypes#readme
sonar.links.ci=https://travis-ci.org/commonality/archetypes
sonar.links.scm=https://github.com/commonality/archetypes
sonar.links.issue=https://github.com/commonality/archetypes/issues
# =====================================================
# Properties that will be shared amongst all modules
# =====================================================
sonar.sources=schemas
sonar.tests=__tests__
sonar.inclusions=schemas/*.js
sonar.test.inclusions=__tests__/*.spec.js
# Properties specific to language plugins:
# - For JavaScript
# sonar.javascript.lcov.reportPaths=coverage
sonar.javascript.lcov.reportPaths=coverage,coverage/lcov.info