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