Files
spring-ldap/test-support/build.gradle
Andy Wilkinson 3f0a443be8 LDAP-329: Upgrade a number of dependencies to latest maintenance releases
A number of dependencies have been updated to the latest version
available without moving to a new major or minor release.
Additionally, a variable has been added for the Commons IO version
to ensure that the same version is used across the three projects
that depend upon it.
2015-04-28 16:01:23 -05:00

17 lines
585 B
Groovy

dependencies {
compile project(":spring-ldap-core"),
project(":spring-ldap-ldif-core"),
"com.google.code.typica:typica:1.3",
"commons-io:commons-io:$commonsIoVersion",
"javax.activation:activation:1.1",
"org.springframework:spring-core:$springVersion",
"org.springframework:spring-beans:$springVersion",
"org.springframework:spring-context:$springVersion",
"org.springframework:spring-test:$springVersion"
compile apachedsDependencies
provided "junit:junit:$junitVersion"
}