* Remove copied deprecated methods * Close ClasspathXmlApplicationContext * Change apacheDsDependencies to test vs optional * Formatting Issue: gh-399
20 lines
704 B
Groovy
20 lines
704 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",
|
|
"commons-lang:commons-lang:$commonsLangVersion"
|
|
|
|
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",
|
|
apachedsDependencies
|
|
}
|