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

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