diff options
author | Julien HENRY <julien.henry@sonarsource.com> | 2015-09-28 14:27:23 +0200 |
---|---|---|
committer | Julien HENRY <julien.henry@sonarsource.com> | 2015-09-28 14:27:23 +0200 |
commit | d5bbf2ddad26c751030d20074ce63912ae36319b (patch) | |
tree | 53617f42ada6fe871bc579a94d29587233139820 | |
parent | d7c0de5c2e53805fdf08b0bb5cf91c801e348a2a (diff) | |
download | sonar-scanner-cli-d5bbf2ddad26c751030d20074ce63912ae36319b.tar.gz sonar-scanner-cli-d5bbf2ddad26c751030d20074ce63912ae36319b.zip |
Make it clear database settings are no more used with SQ 5.2+
-rw-r--r-- | sonar-runner-cli/src/main/assembly/conf/sonar-runner.properties | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sonar-runner-cli/src/main/assembly/conf/sonar-runner.properties b/sonar-runner-cli/src/main/assembly/conf/sonar-runner.properties index 25e6024..e1528cb 100644 --- a/sonar-runner-cli/src/main/assembly/conf/sonar-runner.properties +++ b/sonar-runner-cli/src/main/assembly/conf/sonar-runner.properties @@ -4,6 +4,13 @@ #----- Default SonarQube server #sonar.host.url=http://localhost:9000 +#----- 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 @@ -15,10 +22,3 @@ #----- Microsoft SQLServer #sonar.jdbc.url=jdbc:jtds:sqlserver://localhost/sonar;SelectMethod=Cursor - -#----- Global database settings -#sonar.jdbc.username=sonar -#sonar.jdbc.password=sonar - -#----- Default source code encoding -#sonar.sourceEncoding=UTF-8 |