1
0
mirror of synced 2026-05-22 21:33:16 +00:00

Update to UnboundID 7.0.3

Closes gh-17730
This commit is contained in:
Josh Cummings
2025-08-14 16:52:43 -06:00
parent 057b7c68fb
commit 40898775ec
2 changed files with 1 additions and 17 deletions
-15
View File
@@ -1,9 +1,5 @@
apply plugin: 'io.spring.convention.spring-module'
configurations {
unboundid7 { extendsFrom(optional, tests) }
}
dependencies {
management platform(project(":spring-security-dependencies"))
api project(':spring-security-core')
@@ -34,8 +30,6 @@ dependencies {
testImplementation "org.springframework:spring-test"
testImplementation 'org.skyscreamer:jsonassert'
unboundid7 libs.com.unboundid.unboundid.ldapsdk7
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
}
@@ -43,12 +37,3 @@ integrationTest {
// exclude('**/OpenLDAPIntegrationTestSuite.class')
maxParallelForks = 1
}
tasks.register("unboundid7Test", Test) {
useJUnitPlatform()
classpath = sourceSets.test.output + sourceSets.main.output + configurations.unboundid7
}
tasks.named("check") {
dependsOn unboundid7Test
}