spring-security-web.gradle 938 B

12345678910111213141516171819202122232425262728
  1. apply plugin: 'io.spring.convention.spring-module'
  2. dependencies {
  3. compile project(':spring-security-core')
  4. compile springCoreDependency
  5. compile 'org.springframework:spring-aop'
  6. compile 'org.springframework:spring-beans'
  7. compile 'org.springframework:spring-context'
  8. compile 'org.springframework:spring-expression'
  9. compile 'org.springframework:spring-web'
  10. optional 'com.fasterxml.jackson.core:jackson-databind'
  11. optional 'org.springframework:spring-jdbc'
  12. optional 'org.springframework:spring-tx'
  13. optional 'org.springframework:spring-webmvc'
  14. provided 'javax.servlet:javax.servlet-api'
  15. testCompile project(path: ':spring-security-core', configuration: 'tests')
  16. testCompile 'commons-codec:commons-codec'
  17. testCompile 'org.codehaus.groovy:groovy-all'
  18. testCompile 'org.skyscreamer:jsonassert'
  19. testCompile powerMock2Dependencies
  20. testCompile spockDependencies
  21. testCompile slf4jDependencies
  22. testRuntime 'org.hsqldb:hsqldb'
  23. }