37 lines
1.0 KiB
Groovy
37 lines
1.0 KiB
Groovy
// Tutorial sample build file
|
|
|
|
apply plugin: 'war'
|
|
apply plugin: 'jetty'
|
|
|
|
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:servlet-api:2.5@jar'
|
|
|
|
compile project(':spring-security-core'),
|
|
"org.springframework:spring-beans:$springVersion",
|
|
"org.springframework:spring-web:$springVersion",
|
|
"org.springframework:spring-webmvc:$springVersion",
|
|
"org.slf4j:slf4j-api:$slf4jVersion"
|
|
|
|
runtime project(':spring-security-web'),
|
|
project(':spring-security-config'),
|
|
project(':spring-security-taglibs'),
|
|
"javax.servlet:jstl:$jstlVersion",
|
|
"org.slf4j:jcl-over-slf4j:$slf4jVersion",
|
|
"ch.qos.logback:logback-core:$logbackVersion",
|
|
"ch.qos.logback:logback-classic:$logbackVersion"
|
|
}
|
|
|
|
jettyRun {
|
|
contextPath = "/tutorial"
|
|
}
|