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
|
|
|
|
2011-01-10 12:27:58 -05:00
|
|
|
|
2010-01-10 18:31:23 -05:00
|
|
|
dependencies {
|
2012-11-28 18:56:03 -05:00
|
|
|
providedCompile "org.apache.tomcat:tomcat-servlet-api:$servletApiVersion"
|
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",
|
2010-08-19 18:23:03 -04:00
|
|
|
"org.springframework:spring-webmvc:$springVersion"
|
2010-01-10 18:31:23 -05:00
|
|
|
|
|
|
|
runtime project(':spring-security-web'),
|
|
|
|
project(':spring-security-config'),
|
|
|
|
project(':spring-security-taglibs'),
|
|
|
|
"org.springframework:spring-context-support:$springVersion",
|
2010-08-19 17:41:51 -04:00
|
|
|
"javax.servlet:jstl:$jstlVersion",
|
2010-02-26 19:41:16 -05:00
|
|
|
"hsqldb:hsqldb:$hsqlVersion",
|
2010-07-26 21:16:39 -04:00
|
|
|
"org.slf4j:jcl-over-slf4j:$slf4jVersion",
|
|
|
|
"ch.qos.logback:logback-classic:$logbackVersion"
|
2013-07-16 16:15:42 -04:00
|
|
|
|
|
|
|
optional "net.sf.ehcache:ehcache:$ehcacheVersion"
|
|
|
|
|
2010-07-20 18:45:20 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
jettyRun {
|
2010-07-26 21:16:39 -04:00
|
|
|
contextPath = "/contacts"
|
|
|
|
}
|