2
0

spring-security-acl.gradle 944 B

12345678910111213141516171819202122232425
  1. apply plugin: 'io.spring.convention.spring-module'
  2. dependencies {
  3. management platform(project(":spring-security-dependencies"))
  4. api project(':spring-security-core')
  5. api 'org.springframework:spring-aop'
  6. api 'org.springframework:spring-context'
  7. api 'org.springframework:spring-core'
  8. api 'org.springframework:spring-jdbc'
  9. api 'org.springframework:spring-tx'
  10. optional 'net.sf.ehcache:ehcache'
  11. testImplementation "org.assertj:assertj-core"
  12. testImplementation "org.junit.jupiter:junit-jupiter-api"
  13. testImplementation "org.junit.jupiter:junit-jupiter-params"
  14. testImplementation "org.junit.jupiter:junit-jupiter-engine"
  15. testImplementation "org.mockito:mockito-core"
  16. testImplementation "org.mockito:mockito-junit-jupiter"
  17. testImplementation 'org.springframework:spring-beans'
  18. testImplementation 'org.springframework:spring-context-support'
  19. testImplementation "org.springframework:spring-test"
  20. testRuntimeOnly 'org.hsqldb:hsqldb'
  21. }