Add integration-tests-openldap to build

Issue gh-610
This commit is contained in:
Josh Cummings
2022-01-12 10:19:33 -07:00
parent c162fc9685
commit 61000b8a4a
3 changed files with 20 additions and 15 deletions

View File

@@ -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"

View File

@@ -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'

View File

@@ -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"
}