File tree Expand file tree Collapse file tree 2 files changed +16
-0
lines changed
Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ com-nimbusds-oauth2-oidc-sdk = "com.nimbusds:oauth2-oidc-sdk:9.43.4"
2525com-squareup-okhttp3-mockwebserver = { module = " com.squareup.okhttp3:mockwebserver" , version.ref = " com-squareup-okhttp3" }
2626com-squareup-okhttp3-okhttp = { module = " com.squareup.okhttp3:okhttp" , version.ref = " com-squareup-okhttp3" }
2727com-unboundid-unboundid-ldapsdk = " com.unboundid:unboundid-ldapsdk:6.0.11"
28+ com-unboundid-unboundid-ldapsdk7 = " com.unboundid:unboundid-ldapsdk:7.0.1"
2829commons-collections = " commons-collections:commons-collections:3.2.2"
2930io-micrometer-micrometer-observation = " io.micrometer:micrometer-observation:1.12.8"
3031io-mockk = " io.mockk:mockk:1.13.11"
Original file line number Diff line number Diff line change 11apply plugin : ' io.spring.convention.spring-module'
22
3+ configurations {
4+ unboundid7 { extendsFrom(optional, tests) }
5+ }
6+
37dependencies {
48 management platform(project(" :spring-security-dependencies" ))
59 api project(' :spring-security-core' )
@@ -35,9 +39,20 @@ dependencies {
3539 testImplementation " org.mockito:mockito-junit-jupiter"
3640 testImplementation " org.springframework:spring-test"
3741 testImplementation ' org.skyscreamer:jsonassert'
42+ unboundid7 libs. com. unboundid. unboundid. ldapsdk7
43+
3844}
3945
4046integrationTest {
4147// exclude('**/OpenLDAPIntegrationTestSuite.class')
4248 maxParallelForks = 1
4349}
50+
51+ tasks. register(" unboundid7Test" , Test ) {
52+ useJUnitPlatform()
53+ classpath = sourceSets. test. output + sourceSets. main. output + configurations. unboundid7
54+ }
55+
56+ tasks. named(" check" ) {
57+ dependsOn unboundid7Test
58+ }
You can’t perform that action at this time.
0 commit comments