blob: dd127fd35c370d443c63691000ed01a0c9cb2d26 (
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
|
sonarqube {
properties {
property 'sonar.projectName', "${projectTitle} :: WebServer :: ES"
}
}
dependencies {
// please keep the list grouped by configuration and ordered by name
compile 'com.google.guava:guava'
compile 'org.sonarsource.api.plugin:sonar-plugin-api'
compile project(':server:sonar-server-common')
compile project(':server:sonar-webserver-auth')
compileOnly 'com.google.code.findbugs:jsr305'
compileOnly 'javax.servlet:javax.servlet-api'
testCompile 'org.apache.logging.log4j:log4j-api'
testCompile 'org.apache.logging.log4j:log4j-core'
testCompile 'org.assertj:assertj-guava'
testCompile 'com.google.code.findbugs:jsr305'
testCompile 'com.tngtech.java:junit-dataprovider'
testCompile 'org.mockito:mockito-core'
testCompile testFixtures(project(':server:sonar-webserver-auth'))
testCompile project(':sonar-testing-harness')
testFixturesApi testFixtures(project(':server:sonar-server-common'))
}
|