2010-01-11 07:31:23 +08:00
|
|
|
// Contacts sample build file
|
|
|
|
|
|
2010-03-29 06:54:41 +08:00
|
|
|
apply plugin: 'war'
|
|
|
|
|
apply plugin: 'jetty'
|
2010-01-11 07:31:23 +08:00
|
|
|
|
2011-01-11 01:27:58 +08:00
|
|
|
configurations {
|
|
|
|
|
runtime.exclude module: 'jsr250-api'
|
|
|
|
|
runtime.exclude group: 'org.aspectj'
|
|
|
|
|
}
|
|
|
|
|
|
2010-01-11 07:31:23 +08:00
|
|
|
dependencies {
|
|
|
|
|
providedCompile 'javax.servlet:servlet-api:2.5@jar'
|
2010-03-08 05:58:25 +08:00
|
|
|
|
2010-01-11 07:31:23 +08:00
|
|
|
compile project(':spring-security-core'),
|
|
|
|
|
project(':spring-security-acl'),
|
2010-02-07 05:22:12 +08:00
|
|
|
"org.springframework:spring-aop:$springVersion",
|
2010-01-11 07:31:23 +08: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",
|
2010-08-20 06:23:03 +08:00
|
|
|
"org.springframework:spring-webmvc:$springVersion"
|
2010-01-11 07:31:23 +08:00
|
|
|
|
|
|
|
|
runtime project(':spring-security-web'),
|
|
|
|
|
project(':spring-security-config'),
|
|
|
|
|
project(':spring-security-taglibs'),
|
|
|
|
|
"org.springframework:spring-context-support:$springVersion",
|
2010-08-20 05:41:51 +08:00
|
|
|
"javax.servlet:jstl:$jstlVersion",
|
2010-01-11 07:31:23 +08:00
|
|
|
"net.sf.ehcache:ehcache:$ehcacheVersion",
|
2010-02-27 08:41:16 +08:00
|
|
|
"hsqldb:hsqldb:$hsqlVersion",
|
2010-07-27 09:16:39 +08:00
|
|
|
"org.slf4j:jcl-over-slf4j:$slf4jVersion",
|
|
|
|
|
"ch.qos.logback:logback-classic:$logbackVersion"
|
2010-07-21 06:45:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
jettyRun {
|
2010-07-27 09:16:39 +08:00
|
|
|
contextPath = "/contacts"
|
|
|
|
|
}
|