aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-auth-saml/build.gradle
blob: cf41ccabb0c5f3c4a1f8411a1331cec1114b8337 (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
description = 'SonarQube :: Authentication :: SAML'

configurations {
    testImplementation.extendsFrom compileOnlyApi
}

dependencies {
    // please keep the list ordered

    api "com.onelogin:java-saml"

    compileOnlyApi 'com.google.code.findbugs:jsr305'
    compileOnlyApi 'com.squareup.okhttp3:okhttp'
    compileOnlyApi 'javax.servlet:javax.servlet-api'
    compileOnlyApi 'org.json:json'
    compileOnlyApi project(':server:sonar-db-dao')
    compileOnlyApi project(':sonar-core')

    testImplementation 'com.tngtech.java:junit-dataprovider'
    testImplementation 'junit:junit'
    testImplementation 'org.assertj:assertj-core'
    testImplementation 'org.mockito:mockito-core'
    testImplementation testFixtures(project(':server:sonar-db-dao'))
}