diff options
author | simonbrandhof <simon.brandhof@gmail.com> | 2011-08-19 22:34:34 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2011-09-06 18:09:03 +0200 |
commit | 5838b8b4364e9ef0a8c8966206fd45c5099a21f8 (patch) | |
tree | d139cce259d2383581dcf45b64cea631e6576527 /sonar-application | |
parent | 1e2befd6977596112369b015cf092e1ce88f1b91 (diff) | |
download | sonarqube-5838b8b4364e9ef0a8c8966206fd45c5099a21f8.tar.gz sonarqube-5838b8b4364e9ef0a8c8966206fd45c5099a21f8.zip |
SONAR-2587 and SONAR-2549 conflicts between database schemas
Diffstat (limited to 'sonar-application')
-rw-r--r-- | sonar-application/src/main/assembly/conf/sonar.properties | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sonar-application/src/main/assembly/conf/sonar.properties b/sonar-application/src/main/assembly/conf/sonar.properties index 45a25935387..0947968e054 100644 --- a/sonar-application/src/main/assembly/conf/sonar.properties +++ b/sonar-application/src/main/assembly/conf/sonar.properties @@ -25,15 +25,14 @@ #sonar.ajp13.port: 8009 -#--------------------------------------------------------- +#----------------------------------------------------------------------- # DATABASE # # IMPORTANT : the embedded database Derby is used by default. -# It is recommended for tests only. Please use an other database -# for production environment (MySQL, Oracle, Postgresql, -# SQLServer) +# It is recommended for tests only. Please use an external database +# for production environment (MySQL, Oracle, Postgresql, SQLServer) # -#--------------------------------------------------------- +#----------------------------------------------------------------------- #----- Credentials # Permissions to create tables and indexes must be granted to JDBC user. @@ -82,6 +81,7 @@ sonar.jdbc.driverClassName: org.apache.derby.jdbc.ClientDriver #sonar.jdbc.url: jdbc:postgresql://localhost/sonar #sonar.jdbc.driverClassName: org.postgresql.Driver #sonar.jdbc.validationQuery: select 1 +#sonar.jdbc.postgreSearchPath: public #----- Microsoft SQLServer @@ -102,13 +102,13 @@ sonar.jdbc.timeBetweenEvictionRunsMillis: 30000 #----- JDBC Datasource bounded to JNDI -# When sonar webapp is deployed into a JEE server, the JDBC datasource can be configured into the JEE server and registered into JNDI. +# When sonar webapp is deployed into a JEE server, the JDBC datasource can be loaded from JNDI. # In such a case Sonar uses this datasource to connect to database. -# If you activate this feature, then the properties starting with "sonar.jdbc." can be commented, except "sonar.jdbc.dialect". +# If you activate this feature, then the properties starting with "sonar.jdbc." can be commented, except sonar.jdbc.dialect. # The JDBC driver must still be deployed into the directory /extensions/jdbc-driver. #sonar.jdbc.jndiName: jdbc/sonar -# Values are : mysql, mssql, derby, oracle, postgresql +# Values are : mysql, mssql, oracle, postgresql #sonar.jdbc.dialect= |