aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-auth-common/build.gradle
blob: 56d3b03da1b95f6b15484580309147ffbbc5bfcc (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.github.spotbugs:spotbugs-annotations'

    testImplementation 'org.apache.commons:commons-lang3'
    testImplementation 'com.squareup.okhttp3:mockwebserver'
    testImplementation 'junit:junit'
    testImplementation 'org.assertj:assertj-core'
    testImplementation 'org.mockito:mockito-core'
}