]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-13155 use the official Maven coordinates of Oracle driver
authorSimon Brandhof <simon.brandhof@sonarsource.com>
Wed, 18 Mar 2020 08:02:15 +0000 (09:02 +0100)
committersonartech <sonartech@sonarsource.com>
Sat, 21 Mar 2020 20:04:03 +0000 (20:04 +0000)
'com.oracle.jdbc:ojdbc8' was the coordinates of the artifact manually
deployed to SonarSource repository.

build.gradle
server/sonar-db-core/build.gradle
server/sonar-db-dao/build.gradle
server/sonar-db-migration/build.gradle

index 1a9b628faf2338c7c711939c6b134f90d9686828..36b17857d11b10703cc93c973889bb6cfa71732d 100644 (file)
@@ -202,7 +202,7 @@ subprojects {
       }
       dependency 'com.ibm.icu:icu4j:3.4.4'
       dependency 'com.microsoft.sqlserver:mssql-jdbc:7.4.1.jre11'
-      dependency 'com.oracle.jdbc:ojdbc8:19.3'
+      dependency 'com.oracle.database.jdbc:ojdbc8:19.3.0.0'
       dependencySet(group: 'com.squareup.okhttp3', version: '3.14.7') {
         entry 'okhttp'
         entry 'mockwebserver'
index 2ab4e3e0148529ce0554b103417e8ef456e3e586..2466304fb751dab15e8b6e70c00ae434efc161e4 100644 (file)
@@ -25,7 +25,7 @@ dependencies {
   testCompile 'com.google.code.findbugs:jsr305'
   testCompile 'com.h2database:h2'
   testCompile 'com.microsoft.sqlserver:mssql-jdbc'
-  testCompile 'com.oracle.jdbc:ojdbc8'
+  testCompile 'com.oracle.database.jdbc:ojdbc8'
   testCompile 'com.tngtech.java:junit-dataprovider'
   testCompile 'org.mockito:mockito-core'
   testCompile 'org.postgresql:postgresql'
@@ -33,7 +33,7 @@ dependencies {
 
   testRuntime 'com.h2database:h2'
   testRuntime 'com.microsoft.sqlserver:mssql-jdbc'
-  testRuntime 'com.oracle.jdbc:ojdbc8'
+  testRuntime 'com.oracle.database.jdbc:ojdbc8'
   testRuntime 'org.postgresql:postgresql'
 
   testFixturesApi 'commons-dbutils:commons-dbutils'
index b443df09fd4e8b010e63c7cc87f44fb623d8bcae..e4f6260f010e0a01ca6aabfee5443fd547d6805d 100644 (file)
@@ -35,7 +35,7 @@ dependencies {
 
   testRuntime 'com.h2database:h2'
   testRuntime 'com.microsoft.sqlserver:mssql-jdbc'
-  testRuntime 'com.oracle.jdbc:ojdbc8'
+  testRuntime 'com.oracle.database.jdbc:ojdbc8'
   testRuntime 'org.postgresql:postgresql'
 
   testFixturesApi testFixtures(project(':server:sonar-db-core'))
index b6d51d37714cf399984677ff42d45145d2029838..de715638b1e3d62c62e49f07fcab7c5a4d0dd0c4 100644 (file)
@@ -31,7 +31,7 @@ dependencies {
 
   testRuntime 'com.h2database:h2'
   testRuntime 'com.microsoft.sqlserver:mssql-jdbc'
-  testRuntime 'com.oracle.jdbc:ojdbc8'
+  testRuntime 'com.oracle.database.jdbc:ojdbc8'
   testRuntime 'org.postgresql:postgresql'
 }