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

1234567891011121314151617181920212223
  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(':server:sonar-process')
  11. compileOnlyApi project(':sonar-core')
  12. testImplementation 'com.tngtech.java:junit-dataprovider'
  13. testImplementation 'junit:junit'
  14. testImplementation 'org.assertj:assertj-core'
  15. testImplementation 'org.mockito:mockito-core'
  16. testImplementation project(":sonar-testing-ldap")
  17. }