Files
spring-ldap/test-support/build.gradle
Rob Winch 8b350a874d Convert to Gradle
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
2013-07-10 11:33:07 -05:00

22 lines
825 B
Groovy

dependencies {
compile project(":spring-ldap-core"),
"com.google.code.typica:typica:1.3",
"commons-io:commons-io:1.4",
"javax.xml:jsr173:1.0",
"javax.activation:activation:1.1",
"javax.xml.bind:jaxb-api:2.1",
"javax.xml:jaxb-impl:2.1",
"org.springframework:spring-core:$springVersion",
"org.springframework:spring-beans:$springVersion",
"org.springframework:spring-context:$springVersion",
"org.springframework:spring-test:$springVersion",
"log4j:log4j:$log4jVersion",
"org.slf4j:slf4j-log4j12:1.0.1"
compile("org.apache.directory.server:apacheds-server-main:1.0.2") {
exclude group: "org.slf4j", module: "nlog4j"
}
provided "junit:junit:$junitVersion"
}