2010-01-10 18:31:23 -05:00
|
|
|
// Tutorial sample build file
|
|
|
|
|
2010-03-28 18:54:41 -04:00
|
|
|
apply plugin: 'war'
|
|
|
|
apply plugin: 'jetty'
|
2010-01-10 18:31:23 -05:00
|
|
|
|
|
|
|
dependencies {
|
|
|
|
providedCompile 'javax.servlet:servlet-api:2.5@jar'
|
2010-03-07 16:58:25 -05:00
|
|
|
|
2010-01-10 18:31:23 -05:00
|
|
|
compile project(':spring-security-core'),
|
|
|
|
"org.springframework:spring-beans:$springVersion",
|
|
|
|
"org.springframework:spring-web:$springVersion",
|
|
|
|
"org.springframework:spring-webmvc:$springVersion",
|
2010-07-22 20:57:15 -04:00
|
|
|
"org.slf4j:slf4j-api:$slf4jVersion"
|
2010-01-10 18:31:23 -05:00
|
|
|
|
|
|
|
runtime project(':spring-security-web'),
|
|
|
|
project(':spring-security-config'),
|
|
|
|
project(':spring-security-taglibs'),
|
2010-08-19 17:41:51 -04:00
|
|
|
"javax.servlet:jstl:$jstlVersion",
|
2010-07-22 20:57:15 -04:00
|
|
|
"org.slf4j:jcl-over-slf4j:$slf4jVersion",
|
|
|
|
"ch.qos.logback:logback-core:$logbackVersion",
|
|
|
|
"ch.qos.logback:logback-classic:$logbackVersion"
|
2010-07-20 18:45:20 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
jettyRun {
|
|
|
|
contextPath = "/tutorial"
|
2010-07-22 20:57:15 -04:00
|
|
|
}
|