2010-01-10 18:31:23 -05:00
|
|
|
// Contacts sample build file
|
|
|
|
|
|
|
|
apply id: 'war'
|
|
|
|
apply id: 'jetty'
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
providedCompile 'javax.servlet:servlet-api:2.5@jar'
|
|
|
|
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-core:$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",
|
|
|
|
"org.aspectj:aspectjrt:$aspectjVersion"
|
|
|
|
|
|
|
|
runtime project(':spring-security-web'),
|
|
|
|
project(':spring-security-config'),
|
|
|
|
project(':spring-security-taglibs'),
|
|
|
|
"org.springframework:spring-context-support:$springVersion",
|
|
|
|
"net.sf.ehcache:ehcache:$ehcacheVersion",
|
|
|
|
'log4j:log4j:1.2.15@jar'
|
|
|
|
}
|