blob: 4c940770b74977e7e303274c803508362f1226bc (
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
41
42
43
|
sonarqube {
properties {
property 'sonar.projectName', "${projectTitle} :: WebServer :: WebAPI"
}
}
configurations {
tests
testCompile.extendsFrom tests
}
dependencies {
// please keep the list grouped by configuration and ordered by name
compile 'com.google.guava:guava'
compile project(':server:sonar-server')
compile project(':server:sonar-webserver-ws')
compileOnly 'com.google.code.findbugs:jsr305'
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.h2database:h2'
testCompile 'com.tngtech.java:junit-dataprovider'
testCompile 'org.mockito:mockito-core'
testCompile project(':server:sonar-db-testing')
testCompile project(path: ":server:sonar-server", configuration: "tests")
testCompile project(path: ":server:sonar-server-common", configuration: "tests")
testCompile project(path: ":server:sonar-webserver-ws", configuration: "tests")
testCompile project(':sonar-testing-harness')
}
task testJar(type: Jar) {
classifier = 'tests'
from sourceSets.test.output
}
artifacts {
tests testJar
}
|