Преглед изворни кода

SONAR-12246 Remove dependencies on MySQL driver

tags/8.0
Simon Brandhof пре 5 година
родитељ
комит
f833180b66

+ 0
- 2
server/sonar-db-core/build.gradle Прегледај датотеку

@@ -28,7 +28,6 @@ dependencies {
testCompile 'com.oracle.jdbc:ojdbc8'
testCompile 'com.tngtech.java:junit-dataprovider'
testCompile 'junit:junit'
testCompile 'mysql:mysql-connector-java'
testCompile 'org.assertj:assertj-core'
testCompile 'org.dbunit:dbunit'
testCompile 'org.mockito:mockito-core'
@@ -39,7 +38,6 @@ dependencies {
testRuntime 'com.h2database:h2'
testRuntime 'com.microsoft.sqlserver:mssql-jdbc'
testRuntime 'com.oracle.jdbc:ojdbc8'
testRuntime 'mysql:mysql-connector-java'
testRuntime 'org.postgresql:postgresql'
}


+ 0
- 1
server/sonar-db-dao/build.gradle Прегледај датотеку

@@ -27,7 +27,6 @@ dependencies {
testRuntime 'com.h2database:h2'
testRuntime 'com.microsoft.sqlserver:mssql-jdbc'
testRuntime 'com.oracle.jdbc:ojdbc8'
testRuntime 'mysql:mysql-connector-java'
testRuntime 'org.postgresql:postgresql'
}


+ 0
- 1
server/sonar-db-migration/build.gradle Прегледај датотеку

@@ -25,7 +25,6 @@ dependencies {
testRuntime 'com.h2database:h2'
testRuntime 'com.microsoft.sqlserver:mssql-jdbc'
testRuntime 'com.oracle.jdbc:ojdbc8'
testRuntime 'mysql:mysql-connector-java'
testRuntime 'org.postgresql:postgresql'
}


+ 0
- 7
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
}

Loading…
Откажи
Сачувај