|
|
|
@ -2,24 +2,32 @@ |
|
|
|
|
|
|
|
|
|
|
|
test.exclude('**/OpenLDAPIntegrationTestSuite.class') |
|
|
|
test.exclude('**/OpenLDAPIntegrationTestSuite.class') |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
apacheds_libs = [ |
|
|
|
|
|
|
|
"org.apache.directory.server:apacheds-core:$apacheDsVersion", |
|
|
|
|
|
|
|
"org.apache.directory.server:apacheds-core-entry:$apacheDsVersion", |
|
|
|
|
|
|
|
"org.apache.directory.server:apacheds-protocol-shared:$apacheDsVersion", |
|
|
|
|
|
|
|
"org.apache.directory.server:apacheds-protocol-ldap:$apacheDsVersion", |
|
|
|
|
|
|
|
"org.apache.directory.server:apacheds-server-jndi:$apacheDsVersion", |
|
|
|
|
|
|
|
'org.apache.directory.shared:shared-ldap:0.9.15' |
|
|
|
|
|
|
|
] |
|
|
|
|
|
|
|
|
|
|
|
dependencies { |
|
|
|
dependencies { |
|
|
|
compile project(':spring-security-core'), |
|
|
|
compile project(':spring-security-core'), |
|
|
|
"org.springframework:spring-beans:$springVersion", |
|
|
|
"org.springframework:spring-beans:$springVersion", |
|
|
|
"org.springframework:spring-context:$springVersion", |
|
|
|
"org.springframework:spring-context:$springVersion", |
|
|
|
"org.springframework:spring-tx:$springVersion", |
|
|
|
"org.springframework:spring-tx:$springVersion", |
|
|
|
"org.apache.directory.server:apacheds-core:$apacheDsVersion", |
|
|
|
|
|
|
|
"org.apache.directory.server:apacheds-core-entry:$apacheDsVersion", |
|
|
|
|
|
|
|
"org.apache.directory.server:apacheds-protocol-shared:$apacheDsVersion", |
|
|
|
|
|
|
|
"org.apache.directory.server:apacheds-protocol-ldap:$apacheDsVersion", |
|
|
|
|
|
|
|
"org.apache.directory.server:apacheds-server-jndi:$apacheDsVersion", |
|
|
|
|
|
|
|
'org.apache.directory.shared:shared-ldap:0.9.15', |
|
|
|
|
|
|
|
'ldapsdk:ldapsdk:4.1' |
|
|
|
'ldapsdk:ldapsdk:4.1' |
|
|
|
|
|
|
|
apacheds_libs.collect { |
|
|
|
|
|
|
|
compile (it) { |
|
|
|
|
|
|
|
exclude group: 'org.slf4j' |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
compile ("org.springframework.ldap:spring-ldap-core:$springLdapVersion") { |
|
|
|
compile ("org.springframework.ldap:spring-ldap-core:$springLdapVersion") { |
|
|
|
exclude(group: 'commons-logging', module: 'commons-logging') |
|
|
|
exclude(group: 'commons-logging', module: 'commons-logging') |
|
|
|
exclude(group: 'org.springframework', module: 'spring-core') |
|
|
|
exclude(group: 'org.springframework', module: 'spring-core') |
|
|
|
exclude(group: 'org.springframework', module: 'spring-tx') |
|
|
|
exclude(group: 'org.springframework', module: 'spring-tx') |
|
|
|
exclude(group: 'org.springframework', module: 'spring-beans') |
|
|
|
exclude(group: 'org.springframework', module: 'spring-beans') |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
runtime 'org.slf4j:slf4j-log4j12:1.4.3' |
|
|
|
|
|
|
|
} |
|
|
|
|