contacts.gradle 1.1 KB

12345678910111213141516171819202122232425262728
  1. // Contacts sample build file
  2. apply from: WAR_SAMPLE_GRADLE
  3. dependencies {
  4. providedCompile "javax.servlet:javax.servlet-api:$servletApiVersion"
  5. compile project(':spring-security-core'),
  6. project(':spring-security-acl'),
  7. "org.springframework:spring-aop:$springVersion",
  8. "org.springframework:spring-beans:$springVersion",
  9. "org.springframework:spring-context:$springVersion",
  10. "org.springframework:spring-jdbc:$springVersion",
  11. "org.springframework:spring-tx:$springVersion",
  12. "org.springframework:spring-web:$springVersion",
  13. "org.springframework:spring-webmvc:$springVersion"
  14. runtime project(':spring-security-web'),
  15. project(':spring-security-config'),
  16. project(':spring-security-taglibs'),
  17. "org.springframework:spring-context-support:$springVersion",
  18. "javax.servlet:jstl:$jstlVersion",
  19. "org.hsqldb:hsqldb:$hsqlVersion",
  20. "org.slf4j:jcl-over-slf4j:$slf4jVersion",
  21. "ch.qos.logback:logback-classic:$logbackVersion",
  22. "net.sf.ehcache:ehcache:$ehcacheVersion"
  23. }