1
0
mirror of synced 2026-08-05 17:57:15 +00:00
Files
spring-security/ldap/spring-security-ldap.gradle
T

33 lines
1.1 KiB
Groovy
Raw Permalink Normal View History

2017-03-28 15:45:30 -05:00
apply plugin: 'io.spring.convention.spring-module'
dependencies {
management platform(project(":spring-security-dependencies"))
2021-04-04 07:31:47 -05: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 15:45:30 -05:00
optional apachedsDependencies
optional 'ldapsdk:ldapsdk'
2017-10-23 00:22:32 -05:00
optional "com.unboundid:unboundid-ldapsdk"
2017-10-29 21:56:53 -05:00
optional 'org.apache.directory.shared:shared-ldap'
2017-10-23 00:22:32 -05:00
2021-04-04 07:31:47 -05:00
api ('org.springframework.ldap:spring-ldap-core') {
2017-03-28 15:45:30 -05: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 07:31:47 -05:00
testImplementation project(':spring-security-test')
testImplementation 'org.slf4j:jcl-over-slf4j'
testImplementation 'org.slf4j:slf4j-api'
2017-03-28 15:45:30 -05:00
}
integrationTest {
// exclude('**/OpenLDAPIntegrationTestSuite.class')
maxParallelForks = 1
}