31 lines
915 B
Groovy
31 lines
915 B
Groovy
// JAAS sample build file
|
|
apply from: WAR_SAMPLE_GRADLE
|
|
|
|
def excludeModules = ['spring-security-acl', 'jsr250-api', 'ehcache', 'spring-jdbc', 'spring-tx']
|
|
|
|
configurations {
|
|
excludeModules.each {name ->
|
|
runtime.exclude module: name
|
|
}
|
|
|
|
runtime.exclude group: 'org.aspectj'
|
|
}
|
|
|
|
dependencies {
|
|
providedCompile "javax.servlet:javax.servlet-api:$servletApiVersion"
|
|
|
|
compile project(':spring-security-core'),
|
|
"org.springframework:spring-beans:$springVersion",
|
|
"org.springframework:spring-context:$springVersion",
|
|
"org.springframework:spring-web:$springVersion"
|
|
|
|
runtime project(':spring-security-web'),
|
|
project(':spring-security-config'),
|
|
project(':spring-security-taglibs'),
|
|
"org.springframework:spring-context-support:$springVersion",
|
|
jstlDependencies,
|
|
"org.slf4j:jcl-over-slf4j:$slf4jVersion",
|
|
"ch.qos.logback:logback-classic:$logbackVersion"
|
|
|
|
integrationTestCompile gebDependencies
|
|
} |