diff --git a/dependencies/build.gradle b/dependencies/build.gradle index d967ba9f..e78532cc 100644 --- a/dependencies/build.gradle +++ b/dependencies/build.gradle @@ -36,6 +36,7 @@ dependencies { api "commons-codec:commons-codec:1.15" api "commons-cli:commons-cli:1.2" api "commons-collections:commons-collections:3.2.2" + api "commons-httpclient:commons-httpclient:3.1" api "commons-io:commons-io:2.11.0" api "commons-lang:commons-lang:2.6" api "commons-logging:commons-logging:1.2" diff --git a/settings.gradle b/settings.gradle index 1eb91534..e3d329c9 100644 --- a/settings.gradle +++ b/settings.gradle @@ -33,7 +33,7 @@ include 'test/integration-tests' //include 'test/integration-tests-spring20' //include 'test/integration-tests-spring25' //include 'test/integration-tests-spring30' -//include 'test/integration-tests-openldap' +include 'test/integration-tests-openldap' //include 'test/integration-tests-sunone' //include 'test/integration-tests-ad' //include 'samples/plain' diff --git a/test/integration-tests-openldap/build.gradle b/test/integration-tests-openldap/build.gradle index 18b678f7..32bf6edb 100644 --- a/test/integration-tests-openldap/build.gradle +++ b/test/integration-tests-openldap/build.gradle @@ -1,22 +1,26 @@ apply plugin: 'io.spring.convention.spring-test' dependencies { - implementation project(":spring-ldap-core-tiger"), - project(":spring-ldap-test"), - "commons-lang:commons-lang", - "commons-logging:commons-logging", - "commons-httpclient:commons-httpclient:3.1", - "commons-codec:commons-codec:1.3" + management platform(project(":spring-ldap-dependencies")) + implementation project(":spring-ldap-core-tiger") + implementation project(":spring-ldap-test") + implementation "commons-lang:commons-lang" + implementation "commons-logging:commons-logging" + implementation "commons-httpclient:commons-httpclient" + implementation "commons-codec:commons-codec" - provided "org.springframework:spring-jdbc" + provided "org.springframework:spring-jdbc" - testImplementation "org.springframework:spring-aop", - "org.springframework:spring-test", - "gsbase:gsbase", - "junit:junit", - "com.sun:ldapbp:1.0", - "org.slf4j:slf4j-log4j12", - "org.assertj:assertj-core" + testImplementation platform('org.junit:junit-bom') + testImplementation "org.junit.vintage:junit-vintage-engine" + + testImplementation "org.springframework:spring-aop" + testImplementation "org.springframework:spring-test" + testImplementation "gsbase:gsbase" + testImplementation "junit:junit" + testImplementation "com.sun:ldapbp:1.0" + testImplementation "org.slf4j:slf4j-log4j12" + testImplementation "org.assertj:assertj-core" }