You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

build.gradle 612B

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