* Remove copied deprecated methods * Close ClasspathXmlApplicationContext * Change apacheDsDependencies to test vs optional * Formatting Issue: gh-399
36 lines
1.3 KiB
Groovy
36 lines
1.3 KiB
Groovy
repositories {
|
|
mavenCentral()
|
|
maven { url "http://download.java.net/maven/2/" }
|
|
}
|
|
apply from: JAVA_SCRIPT
|
|
|
|
ext.spring30Version = '3.0.7.RELEASE'
|
|
|
|
dependencies {
|
|
testCompile (project(":spring-ldap-test")) {
|
|
exclude group: "org.springframework", module:"spring-core"
|
|
exclude group: "org.springframework", module:"spring-beans"
|
|
exclude group: "org.springframework", module:"spring-context"
|
|
exclude group: "org.springframework", module:"spring-test"
|
|
exclude group: "org.springframework", module:"spring-tx"
|
|
}
|
|
|
|
testCompile ("org.springframework:spring-test:$spring30Version") {
|
|
exclude group: "junit", module:"junit"
|
|
}
|
|
|
|
testCompile "org.springframework:spring-test:$spring30Version",
|
|
"org.springframework:spring-context:$spring30Version",
|
|
"org.springframework:spring-core:$spring30Version",
|
|
"org.springframework:spring-tx:$spring30Version",
|
|
"org.springframework:spring-beans:$spring30Version",
|
|
"junit:junit:$junitVersion",
|
|
"org.slf4j:slf4j-log4j12:$slf4jVersion",
|
|
"org.assertj:assertj-core:$assertjVersion",
|
|
apachedsDependencies
|
|
|
|
testCompile("org.springframework.data:spring-data-commons:$springDataVersion") {
|
|
exclude group: "org.springframework"
|
|
}
|
|
}
|