diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2017-08-24 08:54:55 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2017-08-28 10:32:08 +0200 |
commit | 8b9c958af6a5c7d6d52d4f08fbc73993d33cad5b (patch) | |
tree | 10b6d3c114f09c113ceba75bd9931106fde2f15b /pom.xml | |
parent | add8cddbb9d6dd14698329a2aea22feebe290d05 (diff) | |
download | sonarqube-8b9c958af6a5c7d6d52d4f08fbc73993d33cad5b.tar.gz sonarqube-8b9c958af6a5c7d6d52d4f08fbc73993d33cad5b.zip |
SONAR-9758 Support Oracle JDBC driver 12.2.0.1.0
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 14 |
1 files changed, 8 insertions, 6 deletions
@@ -886,12 +886,14 @@ <version>5.1.42</version> </dependency> <dependency> - <groupId>com.oracle</groupId> - <artifactId>ojdbc6</artifactId> - <!-- SonarSource internal tests: --> - <!-- This version should be the same as at http://infra.internal.sonarsource.com/jenkins/orch-oracle*.properties --> - <version>11.2.0.3.0</version> - </dependency> + <groupId>com.oracle.jdbc</groupId> + <artifactId>ojdbc8</artifactId> + <!-- + This version is compatible with Oracle 11g and 12c : + http://www.oracle.com/technetwork/database/enterprise-edition/jdbc-faq-090281.html#01_02 + --> + <version>12.2.0.1.0</version> + </dependency> <dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> |