diff options
author | Julien HENRY <julien.henry@sonarsource.com> | 2015-06-25 15:53:51 +0200 |
---|---|---|
committer | Julien HENRY <julien.henry@sonarsource.com> | 2015-06-25 18:01:35 +0200 |
commit | d4feed19cf6c8c8adf7fcdb037436871c962175a (patch) | |
tree | 527965c695694bff91a8c5cc70ce78f344103c04 /sonar-runner-cli/src/main/assembly/conf | |
parent | 8d8bc9bf3d4964f71e9c0e0d719ad1416ba8c16a (diff) | |
download | sonar-scanner-cli-d4feed19cf6c8c8adf7fcdb037436871c962175a.tar.gz sonar-scanner-cli-d4feed19cf6c8c8adf7fcdb037436871c962175a.zip |
SONARUNNER-141 Remove forked mode
Diffstat (limited to 'sonar-runner-cli/src/main/assembly/conf')
-rw-r--r-- | sonar-runner-cli/src/main/assembly/conf/sonar-runner.properties | 28 |
1 files changed, 28 insertions, 0 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 new file mode 100644 index 0000000..213cc00 --- /dev/null +++ b/sonar-runner-cli/src/main/assembly/conf/sonar-runner.properties @@ -0,0 +1,28 @@ +#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=http://localhost:9000 + +#----- 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 + +#----- Global database settings +#sonar.jdbc.username=sonar +#sonar.jdbc.password=sonar + +#----- Default source code encoding +#sonar.sourceEncoding=UTF-8 + +#----- Security (when 'sonar.forceAuthentication' is set to 'true') +#sonar.login=admin +#sonar.password=admin |