aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-webserver-pushapi/build.gradle
blob: de2feba9561551420bf7e3ffc75d541b422e90c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
sonar {
    properties {
        property 'sonar.projectName', "${projectTitle} :: WebServer :: PushAPI"
    }
}
dependencies {

    compile 'javax.servlet:javax.servlet-api'
    compile 'org.json:json'

    compile project(':server:sonar-webserver-ws')
    compile project(':server:sonar-webserver-auth')

    testCompile 'junit:junit'
    testCompile 'org.assertj:assertj-core'
    testCompile 'org.mockito:mockito-core'
    testCompile 'org.awaitility:awaitility'
    testCompile testFixtures(project(':server:sonar-webserver-ws'))
    testCompile testFixtures(project(':server:sonar-db-dao'))

    testFixturesApi project(':sonar-testing-harness')
    testFixturesCompileOnly testFixtures(project(':server:sonar-webserver-ws'))
}