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 {
|
2014-04-02 21:48:55 +08:00
|
|
|
providedCompile "javax.servlet:javax.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",
|
2014-06-13 01:01:04 +08:00
|
|
|
jstlDependencies,
|
2013-12-14 09:21:10 +08:00
|
|
|
"org.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",
|
2014-04-11 22:57:18 +08:00
|
|
|
"net.sf.ehcache:ehcache-core:$ehcacheVersion"
|
2013-07-17 04:15:42 +08:00
|
|
|
|
2013-08-07 00:31:45 +08:00
|
|
|
}
|