2010-01-10 18:31:23 -05:00
|
|
|
// Contacts 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'),
|
|
|
|
project(':spring-security-acl'),
|
2010-02-06 16:22:12 -05:00
|
|
|
"org.springframework:spring-aop:$springVersion",
|
2010-01-10 18:31:23 -05:00
|
|
|
"org.springframework:spring-beans:$springVersion",
|
|
|
|
"org.springframework:spring-context:$springVersion",
|
|
|
|
"org.springframework:spring-jdbc:$springVersion",
|
|
|
|
"org.springframework:spring-tx:$springVersion",
|
|
|
|
"org.springframework:spring-web:$springVersion",
|
|
|
|
"org.springframework:spring-webmvc:$springVersion",
|
|
|
|
"org.aspectj:aspectjrt:$aspectjVersion"
|
|
|
|
|
|
|
|
runtime project(':spring-security-web'),
|
|
|
|
project(':spring-security-config'),
|
|
|
|
project(':spring-security-taglibs'),
|
|
|
|
"org.springframework:spring-context-support:$springVersion",
|
|
|
|
"net.sf.ehcache:ehcache:$ehcacheVersion",
|
2010-02-26 19:41:16 -05:00
|
|
|
"hsqldb:hsqldb:$hsqlVersion",
|
2010-01-10 18:31:23 -05:00
|
|
|
'log4j:log4j:1.2.15@jar'
|
2010-07-20 18:45:20 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
jettyRun {
|
|
|
|
contextPath = "/tutorial"
|
2010-01-10 18:31:23 -05:00
|
|
|
}
|