diff options
Diffstat (limited to 'server/sonar-ce-common/build.gradle')
-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' } |