diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2018-03-09 16:15:11 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2018-03-09 16:15:11 +0100 |
commit | b048235e14d7164bae2c721baf0f54ced9501938 (patch) | |
tree | d9be9dabdb40c7178b4637618f594f2d688fc8a7 /sonar-scanner-engine/build.gradle | |
parent | ecb47fd436d68da804557362f9a42b337c59892f (diff) | |
download | sonarqube-b048235e14d7164bae2c721baf0f54ced9501938.tar.gz sonarqube-b048235e14d7164bae2c721baf0f54ced9501938.zip |
Add missing dependencies in sonar-scanner-engine
Diffstat (limited to 'sonar-scanner-engine/build.gradle')
-rw-r--r-- | sonar-scanner-engine/build.gradle | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/sonar-scanner-engine/build.gradle b/sonar-scanner-engine/build.gradle index e5ee1087be7..5c5b7165cee 100644 --- a/sonar-scanner-engine/build.gradle +++ b/sonar-scanner-engine/build.gradle @@ -14,19 +14,23 @@ configurations { } dependencies { + // please keep the list ordered + compile 'commons-codec:commons-codec' compile 'commons-lang:commons-lang' compile 'com.google.code.gson:gson' compile 'com.google.guava:guava' + compile 'org.apache.commons:commons-csv' compile 'org.freemarker:freemarker' + compile 'org.slf4j:jcl-over-slf4j' compile 'org.slf4j:jul-to-slf4j' compile 'org.slf4j:log4j-over-slf4j' compile 'org.slf4j:slf4j-api' compile 'org.sonarsource:sonar-persistit' compile project(':sonar-core') + compile project(':sonar-home') compile project(':sonar-scanner-protocol') compile project(':sonar-ws') - compile project(':sonar-home') compile project(path: ':sonar-plugin-api', configuration: 'shadow') compileOnly 'com.google.code.findbugs:jsr305' @@ -42,9 +46,9 @@ dependencies { "org.eclipse.jetty:jetty-http:8.1.2.v20120308" ) } + testCompile 'net.javacrumbs.json-unit:json-unit-assertj:0.0.15' testCompile 'org.assertj:assertj-core' testCompile 'org.mockito:mockito-core' - testCompile 'net.javacrumbs.json-unit:json-unit-assertj:0.0.15' testCompile project(':plugins:sonar-xoo-plugin') testCompile project(':sonar-plugin-api').sourceSets.test.output } |