File tree 2 files changed +16
-0
lines changed 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"
25
25
com-squareup-okhttp3-mockwebserver = { module = " com.squareup.okhttp3:mockwebserver" , version.ref = " com-squareup-okhttp3" }
26
26
com-squareup-okhttp3-okhttp = { module = " com.squareup.okhttp3:okhttp" , version.ref = " com-squareup-okhttp3" }
27
27
com-unboundid-unboundid-ldapsdk = " com.unboundid:unboundid-ldapsdk:6.0.11"
28
+ com-unboundid-unboundid-ldapsdk7 = " com.unboundid:unboundid-ldapsdk:7.0.1"
28
29
commons-collections = " commons-collections:commons-collections:3.2.2"
29
30
io-micrometer-micrometer-observation = " io.micrometer:micrometer-observation:1.12.8"
30
31
io-mockk = " io.mockk:mockk:1.13.11"
Original file line number Diff line number Diff line change 1
1
apply plugin : ' io.spring.convention.spring-module'
2
2
3
+ configurations {
4
+ unboundid7 { extendsFrom(optional, tests) }
5
+ }
6
+
3
7
dependencies {
4
8
management platform(project(" :spring-security-dependencies" ))
5
9
api project(' :spring-security-core' )
@@ -35,9 +39,20 @@ dependencies {
35
39
testImplementation " org.mockito:mockito-junit-jupiter"
36
40
testImplementation " org.springframework:spring-test"
37
41
testImplementation ' org.skyscreamer:jsonassert'
42
+ unboundid7 libs. com. unboundid. unboundid. ldapsdk7
43
+
38
44
}
39
45
40
46
integrationTest {
41
47
// exclude('**/OpenLDAPIntegrationTestSuite.class')
42
48
maxParallelForks = 1
43
49
}
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