1
0
mirror of synced 2026-05-22 13:23:17 +00:00
Files
spring-security/ldap/spring-security-ldap.gradle
T

45 lines
1.7 KiB
Groovy
Raw Normal View History

2017-03-28 15:45:30 -05:00
apply plugin: 'io.spring.convention.spring-module'
apply plugin: 'javadoc-warnings-error'
apply plugin: 'compile-warnings-error'
2026-01-27 18:05:02 -07:00
apply plugin: 'security-nullability'
2017-03-28 15:45:30 -05:00
dependencies {
2021-10-05 11:23:29 -03:00
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
2020-12-04 21:27:52 +01:00
optional 'com.fasterxml.jackson.core:jackson-databind'
2017-03-28 15:45:30 -05:00
optional 'ldapsdk:ldapsdk'
2017-10-23 00:22:32 -05:00
optional "com.unboundid:unboundid-ldapsdk"
2025-09-01 18:23:31 +02:00
optional 'tools.jackson.core:jackson-databind'
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')
}
2025-09-03 16:33:16 -06:00
testImplementation project(path : ':spring-security-core', configuration : 'tests')
testImplementation project(":spring-security-test")
2021-04-04 07:31:47 -05:00
testImplementation 'org.slf4j:slf4j-api'
2021-07-12 13:06:44 -05:00
testImplementation "org.assertj:assertj-core"
testImplementation "org.junit.jupiter:junit-jupiter-api"
testImplementation "org.junit.jupiter:junit-jupiter-params"
testImplementation "org.junit.jupiter:junit-jupiter-engine"
testImplementation "org.mockito:mockito-core"
testImplementation "org.mockito:mockito-junit-jupiter"
testImplementation "org.springframework:spring-test"
2020-12-04 21:27:52 +01:00
testImplementation 'org.skyscreamer:jsonassert'
2025-03-17 14:16:44 -05:00
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
2017-03-28 15:45:30 -05:00
}
integrationTest {
// exclude('**/OpenLDAPIntegrationTestSuite.class')
maxParallelForks = 1
}