blob: 8af87f30bcb666393541b971041d61b4a467feb1 (
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 {
testImplementation.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")
}
|