aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-db-migration/build.gradle
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@sonarsource.com>2018-03-18 22:13:43 +0100
committerSonarTech <sonartech@sonarsource.com>2018-03-22 12:37:47 +0100
commit0a9d9db7f85e7d45b4ffa319d262231f311641f9 (patch)
treeadb10e40de4c3ae338ee2c29f10c9caf8cb821c9 /server/sonar-db-migration/build.gradle
parent73e39a73e70b97ab0043cf5abc4eddcf68f2ce00 (diff)
downloadsonarqube-0a9d9db7f85e7d45b4ffa319d262231f311641f9.tar.gz
sonarqube-0a9d9db7f85e7d45b4ffa319d262231f311641f9.zip
Single Gradle build for SQ and core plugins
Diffstat (limited to 'server/sonar-db-migration/build.gradle')
-rw-r--r--server/sonar-db-migration/build.gradle8
1 files changed, 6 insertions, 2 deletions
diff --git a/server/sonar-db-migration/build.gradle b/server/sonar-db-migration/build.gradle
index 2198734c3a1..f26ceaf8255 100644
--- a/server/sonar-db-migration/build.gradle
+++ b/server/sonar-db-migration/build.gradle
@@ -13,7 +13,6 @@ dependencies {
compileOnly 'com.google.code.findbugs:jsr305'
testCompile 'com.google.code.findbugs:jsr305'
- testCompile 'com.h2database:h2'
testCompile 'com.tngtech.java:junit-dataprovider'
testCompile 'junit:junit'
testCompile 'org.assertj:assertj-core'
@@ -21,10 +20,15 @@ dependencies {
testCompile 'org.mockito:mockito-core'
testCompile project(':sonar-testing-harness')
testCompile project(':server:sonar-db-core').sourceSets.test.output
+
+ testRuntime 'com.h2database:h2'
+ testRuntime 'com.microsoft.sqlserver:mssql-jdbc'
+ testRuntime 'com.oracle.jdbc:ojdbc8'
+ testRuntime 'mysql:mysql-connector-java'
+ testRuntime 'org.postgresql:postgresql'
}
test {
- if (System.hasProperty('orchestrator.configUrl'))
systemProperty 'orchestrator.configUrl', System.getProperty('orchestrator.configUrl')
}