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.
34 lines
1.1 KiB
34 lines
1.1 KiB
// Servlet API integration sample build file |
|
|
|
apply plugin: 'war' |
|
|
|
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'), |
|
project(':spring-security-web'), |
|
"javax.servlet:jstl:$jstlVersion", |
|
"org.springframework:spring-beans:$springVersion", |
|
"org.springframework:spring-context:$springVersion", |
|
"org.springframework:spring-web:$springVersion", |
|
"org.springframework:spring-webmvc:$springVersion" |
|
|
|
runtime project(':spring-security-config'), |
|
project(':spring-security-taglibs'), |
|
"org.springframework:spring-context-support:$springVersion", |
|
"javax.servlet:jstl:$jstlVersion", |
|
"org.slf4j:jcl-over-slf4j:$slf4jVersion", |
|
"ch.qos.logback:logback-classic:$logbackVersion" |
|
} |
|
|
|
eclipse.wtp.component.contextPath = "servletapi"
|
|
|