2010-01-11 07:31:23 +08:00
|
|
|
// Contacts sample build file
|
|
|
|
|
2013-08-07 00:31:45 +08:00
|
|
|
apply from: WAR_SAMPLE_GRADLE
|
2011-01-11 01:27:58 +08:00
|
|
|
|
2010-01-11 07:31:23 +08:00
|
|
|
dependencies {
|
2012-11-29 07:56:03 +08:00
|
|
|
providedCompile "org.apache.tomcat:tomcat-servlet-api:$servletApiVersion"
|
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-02-27 08:41:16 +08:00
|
|
|
"hsqldb:hsqldb:$hsqlVersion",
|
2010-07-27 09:16:39 +08:00
|
|
|
"org.slf4j:jcl-over-slf4j:$slf4jVersion",
|
2013-08-16 03:49:21 +08:00
|
|
|
"ch.qos.logback:logback-classic:$logbackVersion",
|
|
|
|
"net.sf.ehcache:ehcache:$ehcacheVersion"
|
2013-07-17 04:15:42 +08:00
|
|
|
|
2013-08-07 00:31:45 +08:00
|
|
|
}
|