aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-auth-common/build.gradle
blob: 7c598342345ba5f58bc17054fea30860cbd50330 (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 compileOnly
}

dependencies {
    // please keep the list ordered

    compile 'com.github.scribejava:scribejava-apis'
    compile 'com.github.scribejava:scribejava-core'

    compileOnly 'com.google.code.findbugs:jsr305'

    testCompile 'commons-lang:commons-lang'
    testCompile 'com.squareup.okhttp3:mockwebserver'
    testCompile 'junit:junit'
    testCompile 'org.assertj:assertj-core'
    testCompile 'org.mockito:mockito-core'
}