18 lines
619 B
Groovy
18 lines
619 B
Groovy
apply from: JAVA_SCRIPT
|
|
|
|
dependencies {
|
|
compile project(":spring-ldap-test"),
|
|
project(":spring-ldap-odm"),
|
|
project(":spring-ldap-core-tiger")
|
|
|
|
provided "org.springframework:spring-jdbc:$springVersion",
|
|
"org.springframework:spring-orm:$springVersion"
|
|
|
|
testCompile "org.springframework:spring-test:$springVersion",
|
|
"junit:junit:$junitVersion",
|
|
"org.slf4j:slf4j-log4j12:$slf4jVersion",
|
|
"org.assertj:assertj-core:$assertjVersion"
|
|
|
|
}
|
|
|
|
test.enabled = false // TODO this should be enabled depending on build parameter |