BaseLdapPathBeanPostProcessor now implements Ordered. Integration test from original issue comments to verify that the change fixes the problem.
36 lines
1.6 KiB
Groovy
36 lines
1.6 KiB
Groovy
repositories {
|
|
maven { url "http://download.java.net/maven/2/" }
|
|
}
|
|
apply from: JAVA_SCRIPT
|
|
|
|
ext.springSecurityVersion='3.0.5.RELEASE'
|
|
|
|
dependencies {
|
|
compile project(":spring-ldap-test"),
|
|
project(":spring-ldap-core-tiger"),
|
|
compile("org.springframework.security:spring-security-core:$springSecurityVersion") {
|
|
exclude group: "org.springframework", module: "spring-expression"
|
|
exclude group: "org.springframework", module: "spring-core"
|
|
exclude group: "org.springframework", module: "spring-context"
|
|
exclude group: "org.springframework", module: "spring-tx"
|
|
exclude group: "org.springframework", module: "spring-aop"
|
|
}
|
|
|
|
provided "commons-pool:commons-pool:$commonsPoolVersion",
|
|
"org.springframework:spring-jdbc:$springVersion",
|
|
"org.springframework:spring-orm:$springVersion"
|
|
|
|
testCompile "org.springframework:spring-test:$springVersion",
|
|
"org.springframework:spring-aop:$springVersion",
|
|
"org.springframework:spring-expression:$springVersion",
|
|
"org.hibernate:hibernate:3.2.6.ga",
|
|
"aspectj:aspectjrt:1.5.3",
|
|
"aspectj:aspectjweaver:1.5.3",
|
|
"hsqldb:hsqldb:1.8.0.7",
|
|
"junit:junit:$junitVersion",
|
|
"org.springframework.security:spring-security-config:$springSecurityVersion"
|
|
|
|
testCompile("org.springframework.security:spring-security-ldap:$springSecurityVersion") {
|
|
exclude group: "org.springframework.ldap", module: "spring-ldap-core"
|
|
}
|
|
} |