aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-application
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@sonarsource.com>2019-07-02 09:48:16 +0200
committersonartech <sonartech@sonarsource.com>2019-07-10 08:36:52 +0200
commitf833180b66616fbcedbb4a747ab51e739c8a3aae (patch)
treee8c74f0a143486c12446bd2bcddd88231b903659 /sonar-application
parent66d4e6772ab7e53be02f8438c69135f632fc7e89 (diff)
downloadsonarqube-f833180b66616fbcedbb4a747ab51e739c8a3aae.tar.gz
sonarqube-f833180b66616fbcedbb4a747ab51e739c8a3aae.zip
SONAR-12246 Remove dependencies on MySQL driver
Diffstat (limited to 'sonar-application')
-rw-r--r--sonar-application/build.gradle7
1 files changed, 0 insertions, 7 deletions
diff --git a/sonar-application/build.gradle b/sonar-application/build.gradle
index b03ba7bcea8..1e6fbae2419 100644
--- a/sonar-application/build.gradle
+++ b/sonar-application/build.gradle
@@ -15,9 +15,6 @@ configurations {
jdbc_mssql {
transitive = false
}
- jdbc_mysql {
- transitive = false
- }
jdbc_postgresql {
transitive = false
}
@@ -53,7 +50,6 @@ dependencies {
jdbc_h2 'com.h2database:h2'
jdbc_mssql 'com.microsoft.sqlserver:mssql-jdbc'
- jdbc_mysql 'mysql:mysql-connector-java'
jdbc_postgresql 'org.postgresql:postgresql'
bundledPlugin 'org.sonarsource.auth.github:sonar-auth-github-plugin:1.5.0.870@jar'
@@ -191,9 +187,6 @@ task zip(type: Zip, dependsOn: [configurations.compile]) {
into("${archiveDir}/lib/jdbc/mssql/") {
from configurations.jdbc_mssql
}
- into("${archiveDir}/lib/jdbc/mysql/") {
- from configurations.jdbc_mysql
- }
into("${archiveDir}/lib/jdbc/postgresql/") {
from configurations.jdbc_postgresql
}