aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-auth-ldap/build.gradle
blob: 622b983188a0a933407318a02ebd7fe3d5110ead (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
description = 'SonarQube :: Authentication :: LDAP'

configurations {
    testCompile.extendsFrom compileOnly
}

dependencies {
    // please keep the list ordered

    compile 'commons-lang:commons-lang'

    compileOnly 'com.google.code.findbugs:jsr305'
    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'
    testCompile project(":sonar-testing-ldap")

}