From 7af9ac7424d5b973a2ea2f943089a793ae0c1451 Mon Sep 17 00:00:00 2001 From: Simon Brandhof Date: Wed, 18 Mar 2020 09:02:15 +0100 Subject: SONAR-13155 use the official Maven coordinates of Oracle driver 'com.oracle.jdbc:ojdbc8' was the coordinates of the artifact manually deployed to SonarSource repository. --- server/sonar-db-core/build.gradle | 4 ++-- server/sonar-db-dao/build.gradle | 2 +- server/sonar-db-migration/build.gradle | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) (limited to 'server') diff --git a/server/sonar-db-core/build.gradle b/server/sonar-db-core/build.gradle index 2ab4e3e0148..2466304fb75 100644 --- a/server/sonar-db-core/build.gradle +++ b/server/sonar-db-core/build.gradle @@ -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' diff --git a/server/sonar-db-dao/build.gradle b/server/sonar-db-dao/build.gradle index b443df09fd4..e4f6260f010 100644 --- a/server/sonar-db-dao/build.gradle +++ b/server/sonar-db-dao/build.gradle @@ -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')) diff --git a/server/sonar-db-migration/build.gradle b/server/sonar-db-migration/build.gradle index b6d51d37714..de715638b1e 100644 --- a/server/sonar-db-migration/build.gradle +++ b/server/sonar-db-migration/build.gradle @@ -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' } -- cgit v1.2.3