blob: ff21ffe4a90aacce7504ccf23e9c12a44f66fc51 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
description = 'SonarQube :: Authentication :: LDAP'
configurations {
testImplementation.extendsFrom compileOnlyApi
}
dependencies {
// please keep the list ordered
api 'commons-lang:commons-lang'
compileOnlyApi 'com.google.code.findbugs:jsr305'
compileOnlyApi 'javax.servlet:javax.servlet-api'
compileOnlyApi project(':server:sonar-process')
compileOnlyApi project(':sonar-core')
testImplementation 'com.tngtech.java:junit-dataprovider'
testImplementation 'junit:junit'
testImplementation 'org.assertj:assertj-core'
testImplementation 'org.mockito:mockito-core'
testImplementation project(":sonar-testing-ldap")
}
|