aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-server-common/build.gradle
diff options
context:
space:
mode:
authorSébastien Lesaint <sebastien.lesaint@sonarsource.com>2018-06-26 16:45:33 +0200
committersonartech <sonartech@sonarsource.com>2018-07-09 10:39:16 +0200
commit8e1dc1628c7cf664c3f799bf4ebc4160a373e183 (patch)
tree7a33f999c8b562d2060b1be2d1a3e77003c74e36 /server/sonar-server-common/build.gradle
parent45f6d410d36e999607e306dcf4374d739d58677b (diff)
downloadsonarqube-8e1dc1628c7cf664c3f799bf4ebc4160a373e183.tar.gz
sonarqube-8e1dc1628c7cf664c3f799bf4ebc4160a373e183.zip
move ES index, indexer and client to sonar-server-common
Diffstat (limited to 'server/sonar-server-common/build.gradle')
-rw-r--r--server/sonar-server-common/build.gradle6
1 files changed, 6 insertions, 0 deletions
diff --git a/server/sonar-server-common/build.gradle b/server/sonar-server-common/build.gradle
index 3b2443c6f2a..33501832218 100644
--- a/server/sonar-server-common/build.gradle
+++ b/server/sonar-server-common/build.gradle
@@ -16,8 +16,10 @@ dependencies {
compile 'com.google.guava:guava'
compile 'org.slf4j:slf4j-api'
compile 'com.squareup.okhttp3:okhttp'
+ compile 'org.elasticsearch.client:transport'
compile project(':server:sonar-db-dao')
compile project(':sonar-core')
+ compile project(':sonar-markdown')
compile project(':sonar-ws')
compileOnly project(path: ':sonar-plugin-api')
@@ -25,12 +27,16 @@ dependencies {
compileOnly 'com.google.code.findbugs:jsr305'
+ testCompile 'ch.qos.logback:logback-core'
testCompile 'com.google.code.findbugs:jsr305'
testCompile 'com.h2database:h2'
testCompile 'com.squareup.okhttp3:mockwebserver'
testCompile 'com.tngtech.java:junit-dataprovider'
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(':server:sonar-db-testing')
}