blob: 0b79c334014127328eff76a709a7e6fa13315b73 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
description = 'SonarQube :: Authentication :: Common'
configurations {
testImplementation.extendsFrom compileOnlyApi
}
dependencies {
// please keep the list ordered
api 'com.github.scribejava:scribejava-apis'
api 'com.github.scribejava:scribejava-core'
compileOnlyApi 'com.google.code.findbugs:jsr305'
testImplementation 'commons-lang:commons-lang'
testImplementation 'com.squareup.okhttp3:mockwebserver'
testImplementation 'junit:junit'
testImplementation 'org.assertj:assertj-core'
testImplementation 'org.mockito:mockito-core'
}
|