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-ce-common | |
parent | 03bb045cca26245804592602c7ff0c6e477f3b8d (diff) | |
download | sonarqube-e4c5ada51ddcc8cd2ac3c19961e9158af2a46e8a.tar.gz sonarqube-e4c5ada51ddcc8cd2ac3c19961e9158af2a46e8a.zip |
Clean deps
Diffstat (limited to 'server/sonar-ce-common')
-rw-r--r-- | server/sonar-ce-common/build.gradle | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/server/sonar-ce-common/build.gradle b/server/sonar-ce-common/build.gradle index c028c302b2f..0de22abccf3 100644 --- a/server/sonar-ce-common/build.gradle +++ b/server/sonar-ce-common/build.gradle @@ -31,25 +31,29 @@ configurations { dependencies { // please keep the list grouped by configuration and ordered by name + compile 'com.google.guava:guava' compile 'org.slf4j:jul-to-slf4j' compile 'org.slf4j:slf4j-api' + compile project(':server:sonar-ce-task') compile project(':server:sonar-db-dao') + compile project(':server:sonar-server-common') + compile project(':sonar-core') + compile project(path: ':sonar-plugin-api', configuration: 'shadow') compileOnly 'com.google.code.findbugs:jsr305' - compileOnly project(':server:sonar-ce-task') - compileOnly project(':server:sonar-server-common') testCompile 'com.google.code.findbugs:jsr305' - testCompile 'com.h2database:h2' testCompile 'com.tngtech.java:junit-dataprovider' + testCompile 'commons-lang:commons-lang' testCompile 'junit:junit' testCompile 'org.apache.logging.log4j:log4j-api' testCompile 'org.apache.logging.log4j:log4j-core' testCompile 'org.assertj:assertj-core' testCompile 'org.assertj:assertj-guava' - testCompile 'org.mockito:mockito-core' - testCompile project(':sonar-plugin-api') - testCompile project(':sonar-core') + testCompile 'org.hamcrest:hamcrest-all' + testCompile project(':sonar-plugin-api-impl') testCompile project(':server:sonar-db-testing') testCompile project(path: ":server:sonar-server-common", configuration: "tests") + + testRuntime 'com.h2database:h2' } |