aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-alm-client/build.gradle
blob: 24941c47926450b16e45a17ba252e49afcbe9969 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
description = 'SonarQube :: ALM integrations :: Clients'

dependencies {
    compile project(path: ':sonar-plugin-api', configuration: 'shadow')
    compile project(':sonar-ws')
    compile project(':server:sonar-webserver-api')
    compile 'com.google.code.gson:gson'
    compile 'com.google.guava:guava'
    compile 'com.squareup.okhttp3:okhttp'
    compile 'commons-codec:commons-codec'
    compile 'com.auth0:java-jwt'
    compile 'org.bouncycastle:bcpkix-jdk15on:1.70'

    testCompile project(':sonar-plugin-api-impl')

    testCompile 'junit:junit'
    testCompile 'com.tngtech.java:junit-dataprovider'
    testCompile 'org.assertj:assertj-core'
    testCompile 'org.assertj:assertj-guava'
    testCompile 'org.mockito:mockito-core'
    testCompile 'com.squareup.okhttp3:mockwebserver'

}