aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-alm-client/build.gradle
blob: fedca969e0274793e54bc9f231b41fe80e400431 (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
description = 'SonarQube :: ALM integrations :: Clients'

dependencies {
    api project(':sonar-ws')
    api project(':server:sonar-webserver-api')

    api 'com.google.code.gson:gson'
    api 'com.google.guava:guava'
    api 'com.squareup.okhttp3:okhttp'
    api 'commons-codec:commons-codec'
    api 'org.kohsuke:github-api'
    api 'com.auth0:java-jwt'
    api 'org.bouncycastle:bcpkix-jdk18on'
    api 'org.sonarsource.api.plugin:sonar-plugin-api'
    api project(':server:sonar-auth-github')
    api project(':server:sonar-auth-gitlab')

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

    testImplementation 'junit:junit'
    testImplementation 'com.tngtech.java:junit-dataprovider'
    testImplementation 'org.assertj:assertj-core'
    testImplementation 'org.assertj:assertj-guava'
    testImplementation 'org.mockito:mockito-core'
    testImplementation 'org.sonarsource.api.plugin:sonar-plugin-api-test-fixtures'
    testImplementation 'com.squareup.okhttp3:mockwebserver'

}