aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@sonarsource.com>2020-03-18 09:02:15 +0100
committersonartech <sonartech@sonarsource.com>2020-03-21 20:04:03 +0000
commit7af9ac7424d5b973a2ea2f943089a793ae0c1451 (patch)
tree3d4e2beae76a6eacf6569fa32d74e77770d0c663
parent979d9e55a07e06fc192bdcbeac00704ab92f06a7 (diff)
downloadsonarqube-7af9ac7424d5b973a2ea2f943089a793ae0c1451.tar.gz
sonarqube-7af9ac7424d5b973a2ea2f943089a793ae0c1451.zip
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.
-rw-r--r--build.gradle2
-rw-r--r--server/sonar-db-core/build.gradle4
-rw-r--r--server/sonar-db-dao/build.gradle2
-rw-r--r--server/sonar-db-migration/build.gradle2
4 files changed, 5 insertions, 5 deletions
diff --git a/build.gradle b/build.gradle
index 1a9b628faf2..36b17857d11 100644
--- a/build.gradle
+++ b/build.gradle
@@ -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'
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'
}