2017-03-28 16:45:30 -04:00
|
|
|
apply plugin: 'io.spring.convention.spring-module'
|
|
|
|
|
|
|
|
dependencies {
|
2021-04-04 20:36:21 -04:00
|
|
|
management platform(project(":spring-security-dependencies"))
|
2021-04-04 08:31:47 -04:00
|
|
|
api project(':spring-security-core')
|
|
|
|
api 'org.springframework:spring-beans'
|
|
|
|
api 'org.springframework:spring-context'
|
|
|
|
api 'org.springframework:spring-core'
|
|
|
|
api 'org.springframework:spring-tx'
|
2017-03-28 16:45:30 -04:00
|
|
|
|
|
|
|
optional apachedsDependencies
|
|
|
|
optional 'ldapsdk:ldapsdk'
|
2017-10-23 01:22:32 -04:00
|
|
|
optional "com.unboundid:unboundid-ldapsdk"
|
2017-10-29 22:56:53 -04:00
|
|
|
optional 'org.apache.directory.shared:shared-ldap'
|
2017-10-23 01:22:32 -04:00
|
|
|
|
2021-04-04 08:31:47 -04:00
|
|
|
api ('org.springframework.ldap:spring-ldap-core') {
|
2017-03-28 16:45:30 -04:00
|
|
|
exclude(group: 'commons-logging', module: 'commons-logging')
|
|
|
|
exclude(group: 'org.springframework', module: 'spring-beans')
|
|
|
|
exclude(group: 'org.springframework', module: 'spring-core')
|
|
|
|
exclude(group: 'org.springframework', module: 'spring-tx')
|
|
|
|
exclude(group: 'org.springframework.data', module: 'spring-data-commons')
|
|
|
|
}
|
|
|
|
|
2021-04-04 08:31:47 -04:00
|
|
|
testImplementation project(':spring-security-test')
|
|
|
|
testImplementation 'org.slf4j:jcl-over-slf4j'
|
|
|
|
testImplementation 'org.slf4j:slf4j-api'
|
2017-03-28 16:45:30 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
integrationTest {
|
|
|
|
// exclude('**/OpenLDAPIntegrationTestSuite.class')
|
|
|
|
maxParallelForks = 1
|
|
|
|
}
|