blob: 06cf0b5bd7f738b6ed97bfd497a2e87138990f70 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
sonar {
properties {
property 'sonar.projectName', "${projectTitle} :: LDAP Testing"
}
}
dependencies {
api 'org.apache.mina:mina-core:2.2.2'
implementation ('org.apache.directory.server:apacheds-server-integ:2.0.0.AM26') {
exclude group: 'log4j', module: 'log4j'
}
testImplementation 'junit:junit'
testImplementation 'org.assertj:assertj-core'
testImplementation 'org.hamcrest:hamcrest-core'
testImplementation 'org.mockito:mockito-core'
}
|