aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-auth-saml/build.gradle
blob: 5651516b7b6f64f97f74347d58da7f9dc015a899 (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 :: SAML'

configurations {
    testCompile.extendsFrom compileOnly
}

ext {
    oneLoginVersion = '2.5.0'
}

dependencies {
    // please keep the list ordered

    compile "com.onelogin:java-saml:${oneLoginVersion}"
    compile "com.onelogin:java-saml-core:${oneLoginVersion}"

    compileOnly 'com.google.code.findbugs:jsr305'
    compileOnly 'com.squareup.okhttp3:okhttp'
    compileOnly 'javax.servlet:javax.servlet-api'
    compileOnly project(':sonar-core')

    testCompile 'com.tngtech.java:junit-dataprovider'
    testCompile 'junit:junit'
    testCompile 'org.assertj:assertj-core'
    testCompile 'org.mockito:mockito-core'
}