You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
712 B
28 lines
712 B
// LDAP sample build file |
|
apply from: WAR_SAMPLE_GRADLE |
|
|
|
def excludeModules = ['spring-security-acl', 'jsr250-api', 'ehcache', 'spring-jdbc', 'ldapsdk'] |
|
|
|
configurations { |
|
excludeModules.each {name -> |
|
runtime.exclude module: name |
|
} |
|
|
|
runtime.exclude group: 'org.aspectj' |
|
} |
|
|
|
dependencies { |
|
compile project(':spring-security-taglibs'), |
|
jstlDependencies |
|
|
|
runtime project(':spring-security-web'), |
|
project(':spring-security-config'), |
|
project(':spring-security-ldap'), |
|
"org.slf4j:jcl-over-slf4j:$slf4jVersion", |
|
"ch.qos.logback:logback-classic:$logbackVersion", |
|
apachedsDependencies |
|
|
|
providedCompile "javax.servlet:javax.servlet-api:$servletApiVersion" |
|
|
|
integrationTestCompile gebDependencies |
|
} |