#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&amp;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=<%= scmAccount %>-<%= projectName %>
sonar.projectName=<%= projectName %>
sonar.projectVersion=<%= version %>
# sonar.organization=$SONAR_ORGANIZATION
# sonar.login=$SONAR_TOKEN

# =====================================================
#   Meta-data for the project
# =====================================================

sonar.links.homepage=https://github.com/<%= scmAccount %>/<%= projectName %>
sonar.links.ci=https://travis-ci.org/<%= scmAccount %>/<%= projectName %>
sonar.links.scm=https://github.com/<%= scmAccount %>/<%= projectName %>
sonar.links.issue=https://github.com/<%= scmAccount %>/<%= projectName %>/issues

# =====================================================
#   Properties that will be shared amongst all modules
# =====================================================

sonar.sources=lib
sonar.tests=lib/__tests__

sonar.inclusions=lib/*.js
sonar.test.inclusions=lib/__tests__/*.test.js

# Properties specific to language plugins:
#   - For JavaScript
# sonar.javascript.lcov.reportPaths=coverage
sonar.javascript.lcov.reportPaths=coverage,coverage/lcov.info
