25 lines
956 B
Groovy
25 lines
956 B
Groovy
repositories {
|
|
mavenCentral()
|
|
maven { url "http://download.java.net/maven/2/" }
|
|
}
|
|
apply from: JAVA_SCRIPT
|
|
|
|
ext.spring20Version = '2.0.8'
|
|
|
|
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-mock:$spring20Version",
|
|
"org.springframework:spring-context:$spring20Version",
|
|
"org.springframework:spring-core:$spring20Version",
|
|
"org.springframework:spring-dao:$spring20Version",
|
|
"org.springframework:spring-beans:$spring20Version",
|
|
"org.slf4j:slf4j-log4j12:$slf4jVersion"
|
|
|
|
} |