Skip to content

Commit 43f52ad

Browse files
committed
Add integration-tests-openldap to build
Issue gh-610
1 parent df2ba83 commit 43f52ad

File tree

3 files changed

+20
-15
lines changed

3 files changed

+20
-15
lines changed

dependencies/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ dependencies {
3636
api "commons-codec:commons-codec:1.15"
3737
api "commons-cli:commons-cli:1.2"
3838
api "commons-collections:commons-collections:3.2.2"
39+
api "commons-httpclient:commons-httpclient:3.1"
3940
api "commons-io:commons-io:2.11.0"
4041
api "commons-lang:commons-lang:2.6"
4142
api "commons-logging:commons-logging:1.2"

settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ include 'test/integration-tests'
3232
//include 'test/integration-tests-spring20'
3333
//include 'test/integration-tests-spring25'
3434
//include 'test/integration-tests-spring30'
35-
//include 'test/integration-tests-openldap'
35+
include 'test/integration-tests-openldap'
3636
//include 'test/integration-tests-sunone'
3737
//include 'test/integration-tests-ad'
3838
//include 'samples/plain'

test/integration-tests-openldap/build.gradle

Lines changed: 18 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,26 @@
11
apply plugin: 'io.spring.convention.spring-test'
22

33
dependencies {
4-
implementation project(":spring-ldap-core-tiger"),
5-
project(":spring-ldap-test"),
6-
"commons-lang:commons-lang",
7-
"commons-logging:commons-logging",
8-
"commons-httpclient:commons-httpclient:3.1",
9-
"commons-codec:commons-codec:1.3"
4+
management platform(project(":spring-ldap-dependencies"))
5+
implementation project(":spring-ldap-core-tiger")
6+
implementation project(":spring-ldap-test")
7+
implementation "commons-lang:commons-lang"
8+
implementation "commons-logging:commons-logging"
9+
implementation "commons-httpclient:commons-httpclient"
10+
implementation "commons-codec:commons-codec"
1011

11-
provided "org.springframework:spring-jdbc"
12+
provided "org.springframework:spring-jdbc"
1213

13-
testImplementation "org.springframework:spring-aop",
14-
"org.springframework:spring-test",
15-
"gsbase:gsbase",
16-
"junit:junit",
17-
"com.sun:ldapbp:1.0",
18-
"org.slf4j:slf4j-log4j12",
19-
"org.assertj:assertj-core"
14+
testImplementation platform('org.junit:junit-bom')
15+
testImplementation "org.junit.vintage:junit-vintage-engine"
16+
17+
testImplementation "org.springframework:spring-aop"
18+
testImplementation "org.springframework:spring-test"
19+
testImplementation "gsbase:gsbase"
20+
testImplementation "junit:junit"
21+
testImplementation "com.sun:ldapbp:1.0"
22+
testImplementation "org.slf4j:slf4j-log4j12"
23+
testImplementation "org.assertj:assertj-core"
2024

2125
}
2226

0 commit comments

Comments
 (0)