blob: d9ee68df06e86a5a4ec0132ec5e9ba8ba04c37d8 (
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
|
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 'com.auth0:java-jwt'
api 'org.bouncycastle:bcpkix-jdk15to18:1.78'
api 'org.sonarsource.api.plugin:sonar-plugin-api'
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 'com.squareup.okhttp3:mockwebserver'
}
|