2
0

spring-security-ldap.gradle 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. apply plugin: 'io.spring.convention.spring-module'
  2. dependencies {
  3. management platform(project(":spring-security-dependencies"))
  4. api project(':spring-security-core')
  5. api 'org.springframework:spring-beans'
  6. api 'org.springframework:spring-context'
  7. api 'org.springframework:spring-core'
  8. api 'org.springframework:spring-tx'
  9. optional 'com.fasterxml.jackson.core:jackson-databind'
  10. optional 'ldapsdk:ldapsdk'
  11. optional "com.unboundid:unboundid-ldapsdk"
  12. api ('org.springframework.ldap:spring-ldap-core') {
  13. exclude(group: 'commons-logging', module: 'commons-logging')
  14. exclude(group: 'org.springframework', module: 'spring-beans')
  15. exclude(group: 'org.springframework', module: 'spring-core')
  16. exclude(group: 'org.springframework', module: 'spring-tx')
  17. exclude(group: 'org.springframework.data', module: 'spring-data-commons')
  18. }
  19. testImplementation project(':spring-security-test')
  20. testImplementation 'org.slf4j:slf4j-api'
  21. testImplementation "org.assertj:assertj-core"
  22. testImplementation "org.junit.jupiter:junit-jupiter-api"
  23. testImplementation "org.junit.jupiter:junit-jupiter-params"
  24. testImplementation "org.junit.jupiter:junit-jupiter-engine"
  25. testImplementation "org.mockito:mockito-core"
  26. testImplementation "org.mockito:mockito-junit-jupiter"
  27. testImplementation "org.springframework:spring-test"
  28. testImplementation 'org.skyscreamer:jsonassert'
  29. testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
  30. }
  31. integrationTest {
  32. // exclude('**/OpenLDAPIntegrationTestSuite.class')
  33. maxParallelForks = 1
  34. }