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 616B

12345678910111213141516171819202122
  1. description = 'SonarQube :: Authentication :: LDAP'
  2. configurations {
  3. testImplementation.extendsFrom compileOnlyApi
  4. }
  5. dependencies {
  6. // please keep the list ordered
  7. api 'commons-lang:commons-lang'
  8. compileOnlyApi 'com.google.code.findbugs:jsr305'
  9. compileOnlyApi 'javax.servlet:javax.servlet-api'
  10. compileOnlyApi project(':sonar-core')
  11. testImplementation 'com.tngtech.java:junit-dataprovider'
  12. testImplementation 'junit:junit'
  13. testImplementation 'org.assertj:assertj-core'
  14. testImplementation 'org.mockito:mockito-core'
  15. testImplementation project(":sonar-testing-ldap")
  16. }