blob: 1900ce7ef7bf7c630c01e3017e128cce3e94ae8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
sonar {
properties {
property 'sonar.projectName', "${projectTitle} :: LDAP Testing"
}
}
dependencies {
api 'org.apache.mina:mina-core:2.2.3'
implementation ('org.apache.directory.server:apacheds-server-integ:2.0.0.AM27') {
exclude group: 'log4j', module: 'log4j'
}
implementation 'org.apache.kerby:kerb-simplekdc:2.0.3'
implementation 'org.apache.kerby:ldap-backend:2.0.3'
testImplementation 'junit:junit'
testImplementation 'org.assertj:assertj-core'
testImplementation 'org.hamcrest:hamcrest-core'
testImplementation 'org.mockito:mockito-core'
}
|