This commit converts the build to a Gradle based build. It also setup sonar integration at https://sonar.springsource.org/dashboard/index/11620 Currently tests in the samples fail on the CI server and are disabled. The tests were not enabled for the maven based build either. Issue: LDAP-251
12 lines
422 B
Groovy
12 lines
422 B
Groovy
apply from: JAVA_SCRIPT
|
|
|
|
description = "Example code for demonstrating the process of refactoring from plain JNDI to Spring LDAP (Java 5)."
|
|
|
|
dependencies {
|
|
compile project(':spring-ldap-test'),
|
|
project(':spring-ldap-core-tiger'),
|
|
"org.springframework:spring-context:$springVersion"
|
|
|
|
testCompile "org.springframework:spring-test:$springVersion",
|
|
"junit:junit:$junitVersion"
|
|
} |