diff options
author | Jean-Baptiste Vilain <jean-baptiste.vilain@sonarsource.com> | 2013-06-24 14:39:08 +0200 |
---|---|---|
committer | Jean-Baptiste Vilain <jean-baptiste.vilain@sonarsource.com> | 2013-06-24 14:39:08 +0200 |
commit | 10ad98a015b17abbb97dfd672958adc348d36e0a (patch) | |
tree | f6a244293b5d30d17656a9f9f7154951b87dd4e8 /sonar-application/src | |
parent | 08ce13911a8cd0ee89184f98bcc07597d01ecf35 (diff) | |
download | sonarqube-10ad98a015b17abbb97dfd672958adc348d36e0a.tar.gz sonarqube-10ad98a015b17abbb97dfd672958adc348d36e0a.zip |
SONAR-4362 Removed obsolete sonar.jdbc.driverClassName in sonar.properties file
Diffstat (limited to 'sonar-application/src')
-rw-r--r-- | sonar-application/src/main/assembly/conf/sonar.properties | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/sonar-application/src/main/assembly/conf/sonar.properties b/sonar-application/src/main/assembly/conf/sonar.properties index f5a6e4d08b2..d4fc1ff02e8 100644 --- a/sonar-application/src/main/assembly/conf/sonar.properties +++ b/sonar-application/src/main/assembly/conf/sonar.properties @@ -46,7 +46,6 @@ sonar.jdbc.password: sonar # Comment the following line to deactivate the default embedded database. sonar.jdbc.url: jdbc:h2:tcp://localhost:9092/sonar -#sonar.jdbc.driverClassName: org.h2.Driver # directory containing H2 database files. By default it's the /data directory in the sonar installation. #sonar.embeddedDatabase.dataDir: @@ -58,9 +57,6 @@ sonar.jdbc.url: jdbc:h2:tcp://localhost:9092/sonar # Comment the embedded database and uncomment the following line to use MySQL #sonar.jdbc.url: jdbc:mysql://localhost:3306/sonar?useUnicode=true&characterEncoding=utf8&rewriteBatchedStatements=true -# Optional properties -#sonar.jdbc.driverClassName: com.mysql.jdbc.Driver - #----- Oracle 10g/11g # To connect to Oracle database : @@ -71,8 +67,6 @@ sonar.jdbc.url: jdbc:h2:tcp://localhost:9092/sonar # - Comment the embedded database and uncomment the following line : #sonar.jdbc.url: jdbc:oracle:thin:@localhost/XE -# Optional properties -#sonar.jdbc.driverClassName: oracle.jdbc.OracleDriver # Uncomment the following property if the Oracle account has permissions to access multiple schemas, # for example sonar schemas with different versions. In that case, use the same property during project analysis @@ -85,8 +79,6 @@ sonar.jdbc.url: jdbc:h2:tcp://localhost:9092/sonar # Comment the embedded database and uncomment the following property to use PostgreSQL #sonar.jdbc.url: jdbc:postgresql://localhost/sonar -# Optional properties -#sonar.jdbc.driverClassName: org.postgresql.Driver # Uncomment the following property if the PostgreSQL account has permissions to access multiple schemas, # for example sonar schemas with different versions. In that case, use the same property during project analysis @@ -98,9 +90,6 @@ sonar.jdbc.url: jdbc:h2:tcp://localhost:9092/sonar # The Jtds open source driver is available in extensions/jdbc-driver/mssql. More details on http://jtds.sourceforge.net #sonar.jdbc.url: jdbc:jtds:sqlserver://localhost/sonar;SelectMethod=Cursor -# Optional properties -#sonar.jdbc.driverClassName: net.sourceforge.jtds.jdbc.Driver - #----- Connection pool settings sonar.jdbc.maxActive: 20 |