12345678910111213141516171819202122232425262728 |
- // Contacts sample build file
- apply from: WAR_SAMPLE_GRADLE
- dependencies {
- providedCompile "javax.servlet:javax.servlet-api:$servletApiVersion"
- 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"
- runtime project(':spring-security-web'),
- project(':spring-security-config'),
- project(':spring-security-taglibs'),
- "org.springframework:spring-context-support:$springVersion",
- "javax.servlet:jstl:$jstlVersion",
- "org.hsqldb:hsqldb:$hsqlVersion",
- "org.slf4j:jcl-over-slf4j:$slf4jVersion",
- "ch.qos.logback:logback-classic:$logbackVersion",
- "net.sf.ehcache:ehcache:$ehcacheVersion"
- }
|