spring-security-taglibs.gradle 798 B

12345678910111213141516171819202122232425
  1. apply plugin: 'io.spring.convention.spring-module'
  2. dependencies {
  3. compile project(':spring-security-acl')
  4. compile project(':spring-security-core')
  5. compile project(':spring-security-web')
  6. compile 'org.springframework:spring-aop'
  7. compile 'org.springframework:spring-beans'
  8. compile 'org.springframework:spring-context'
  9. compile 'org.springframework:spring-core'
  10. compile 'org.springframework:spring-expression'
  11. compile 'org.springframework:spring-web'
  12. provided 'javax.servlet.jsp:javax.servlet.jsp-api'
  13. provided 'javax.servlet:javax.servlet-api'
  14. testCompile 'org.codehaus.groovy:groovy-all'
  15. testCompile spockDependencies
  16. testRuntime 'javax.servlet.jsp.jstl:javax.servlet.jsp.jstl-api'
  17. }
  18. configure(project.tasks.withType(Test)) {
  19. systemProperties['springSecurityVersion'] = version
  20. }