spring-security-acl.gradle 585 B

12345678910111213141516171819
  1. apply plugin: 'io.spring.convention.spring-module'
  2. dependencies {
  3. compile project(':spring-security-core')
  4. compile 'aopalliance:aopalliance'
  5. compile 'org.springframework:spring-aop'
  6. compile 'org.springframework:spring-context'
  7. compile 'org.springframework:spring-core'
  8. compile 'org.springframework:spring-jdbc'
  9. compile 'org.springframework:spring-tx'
  10. optional 'net.sf.ehcache:ehcache'
  11. testCompile 'org.springframework:spring-beans'
  12. testCompile 'org.springframework:spring-context-support'
  13. testCompile 'org.springframework:spring-test'
  14. testRuntime 'org.hsqldb:hsqldb'
  15. }