diff options
author | Duarte Meneses <duarte.meneses@sonarsource.com> | 2019-07-15 15:59:23 -0500 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2019-07-17 20:21:13 +0200 |
commit | e4c5ada51ddcc8cd2ac3c19961e9158af2a46e8a (patch) | |
tree | a32da619600d0200d4e414d13c0fb4ebb2f9a31e /server/sonar-db-migration | |
parent | 03bb045cca26245804592602c7ff0c6e477f3b8d (diff) | |
download | sonarqube-e4c5ada51ddcc8cd2ac3c19961e9158af2a46e8a.tar.gz sonarqube-e4c5ada51ddcc8cd2ac3c19961e9158af2a46e8a.zip |
Clean deps
Diffstat (limited to 'server/sonar-db-migration')
-rw-r--r-- | server/sonar-db-migration/build.gradle | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/server/sonar-db-migration/build.gradle b/server/sonar-db-migration/build.gradle index dd2969a4dea..282b5bc3c65 100644 --- a/server/sonar-db-migration/build.gradle +++ b/server/sonar-db-migration/build.gradle @@ -7,7 +7,14 @@ sonarqube { dependencies { // please keep the list grouped by configuration and ordered by name + compile 'com.google.guava:guava' + compile 'commons-lang:commons-lang' + compile 'commons-codec:commons-codec' + compile 'org.picocontainer:picocontainer' + compile 'commons-dbutils:commons-dbutils' + compile project(':server:sonar-db-core') + compile project(':server:sonar-process') compile project(':sonar-core') compileOnly 'com.google.code.findbugs:jsr305' @@ -17,8 +24,9 @@ dependencies { testCompile 'junit:junit' testCompile 'org.assertj:assertj-core' testCompile 'org.dbunit:dbunit' - testCompile 'org.mockito:mockito-core' testCompile 'org.mindrot:jbcrypt' + testCompile 'org.mockito:mockito-core' + testCompile project(':sonar-scanner-protocol') testCompile project(':sonar-testing-harness') testCompile project(':server:sonar-db-core').sourceSets.test.output |