Previous to this commit, the only provider for embedded ldap server was apacheds. Now, unboundid can be used as a option for testing purpose. See gh-386
20 lines
640 B
Groovy
20 lines
640 B
Groovy
apply from: SAMPLE_WAR_GRADLE
|
|
|
|
dependencies {
|
|
compile project(':spring-ldap-test'),
|
|
'javax.servlet:jstl:1.2',
|
|
"org.springframework:spring-context:$springVersion",
|
|
"org.springframework:spring-webmvc:$springVersion",
|
|
"org.springframework.data:spring-data-commons:$springDataVersion"
|
|
|
|
optional apachedsDependencies
|
|
|
|
provided "javax.servlet:servlet-api:2.5"
|
|
|
|
runtime 'ch.qos.logback:logback-classic:1.0.13'
|
|
|
|
testCompile "org.springframework:spring-test:$springVersion",
|
|
"junit:junit:$junitVersion",
|
|
"org.assertj:assertj-core:$assertjVersion"
|
|
}
|