blob: 2e11dd66e757f36fb21517fff334d8eaa41d62de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
sonarqube {
properties {
property 'sonar.projectName', "${projectTitle} :: Main Process"
}
}
dependencies {
// please keep the list grouped by configuration and ordered by name
compile 'ch.qos.logback:logback-classic'
compile 'ch.qos.logback:logback-core'
// Required by our usage of Guava for clustering : CeWorkerFactoryImpl.getClusteredWorkerUUIDs()
compile 'com.google.guava:guava'
compile 'com.hazelcast:hazelcast'
compile 'commons-io:commons-io'
compile 'commons-lang:commons-lang'
compile 'org.apache.logging.log4j:log4j-to-slf4j'
compile 'org.apache.logging.log4j:log4j-api'
compile 'org.elasticsearch.client:elasticsearch-rest-high-level-client'
compile 'org.elasticsearch:elasticsearch'
compile 'org.elasticsearch:elasticsearch-core'
compile 'org.slf4j:slf4j-api'
compile 'org.yaml:snakeyaml'
compile project(':server:sonar-process')
compile project(':sonar-core')
compileOnly 'com.google.code.findbugs:jsr305'
testCompile 'com.google.code.findbugs:jsr305'
testCompile 'com.tngtech.java:junit-dataprovider'
testCompile 'junit:junit'
testCompile 'org.assertj:assertj-core'
testCompile 'org.awaitility:awaitility'
testCompile 'org.mockito:mockito-core'
testCompile 'com.squareup.okhttp3:mockwebserver'
testCompile 'commons-logging:commons-logging:1.1.1'
testCompile project(':sonar-testing-harness')
}
|