2010-01-10 18:31:23 -05:00
|
|
|
// Contacts sample build file
|
|
|
|
|
2013-08-06 12:31:45 -04:00
|
|
|
apply from: WAR_SAMPLE_GRADLE
|
2011-01-10 12:27:58 -05:00
|
|
|
|
2010-01-10 18:31:23 -05:00
|
|
|
dependencies {
|
2015-03-23 12:14:26 -04:00
|
|
|
providedCompile "javax.servlet:javax.servlet-api:$servletApiVersion"
|
2010-03-07 16:58:25 -05:00
|
|
|
|
2015-03-23 12:14:26 -04:00
|
|
|
compile project(':spring-security-core'),
|
|
|
|
project(':spring-security-acl'),
|
|
|
|
"org.springframework:spring-aop:$springVersion",
|
|
|
|
"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"
|
2010-01-10 18:31:23 -05:00
|
|
|
|
2015-03-23 12:14:26 -04:00
|
|
|
runtime project(':spring-security-web'),
|
|
|
|
project(':spring-security-config'),
|
|
|
|
project(':spring-security-taglibs'),
|
|
|
|
"org.springframework:spring-context-support:$springVersion",
|
|
|
|
jstlDependencies,
|
|
|
|
"org.hsqldb:hsqldb:$hsqlVersion",
|
|
|
|
"org.slf4j:jcl-over-slf4j:$slf4jVersion",
|
|
|
|
"ch.qos.logback:logback-classic:$logbackVersion",
|
|
|
|
"net.sf.ehcache:ehcache:$ehcacheVersion"
|
2013-07-16 16:15:42 -04:00
|
|
|
|
2015-03-23 12:14:26 -04:00
|
|
|
integrationTestCompile gebDependencies
|
2013-08-06 12:31:45 -04:00
|
|
|
}
|