blob: d49f5c84e65797d946984d209c2cbfa4819e87d5 (
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
|
description = 'SonarQube :: Authentication :: Bitbucket'
configurations {
testImplementation.extendsFrom compileOnlyApi
}
dependencies {
// please keep the list ordered
api 'com.github.scribejava:scribejava-apis'
api 'com.github.scribejava:scribejava-core'
api 'com.google.code.gson:gson'
api project(':server:sonar-auth-common')
compileOnlyApi 'com.github.spotbugs:spotbugs-annotations'
compileOnlyApi 'com.squareup.okhttp3:okhttp'
compileOnlyApi 'jakarta.servlet:jakarta.servlet-api'
compileOnlyApi project(':sonar-core')
testImplementation 'com.squareup.okhttp3:mockwebserver'
testImplementation 'com.squareup.okhttp3:okhttp'
testImplementation 'junit:junit'
testImplementation 'org.assertj:assertj-core'
testImplementation 'org.mockito:mockito-core'
testImplementation project(path: ':server:sonar-webserver-api')
}
|