18 lines
524 B
Groovy
18 lines
524 B
Groovy
sonar {
|
|
properties {
|
|
property 'sonar.projectName', "${projectTitle} :: LDAP Testing"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
api 'org.apache.mina:mina-core'
|
|
implementation 'org.apache.directory.server:apacheds-server-integ'
|
|
implementation 'org.apache.kerby:kerb-simplekdc'
|
|
implementation 'org.apache.kerby:ldap-backend'
|
|
|
|
testImplementation 'junit:junit'
|
|
testImplementation 'org.assertj:assertj-core'
|
|
testImplementation 'org.hamcrest:hamcrest-core'
|
|
testImplementation 'org.mockito:mockito-core'
|
|
}
|