taglibs.gradle 872 B

12345678910111213141516171819202122232425
  1. // Taglibs build file
  2. apply plugin: 'groovy'
  3. dependencies {
  4. compile project(':spring-security-core'),
  5. project(':spring-security-web'),
  6. project(':spring-security-acl'),
  7. "org.springframework:spring-beans:$springVersion",
  8. "org.springframework:spring-aop:$springVersion",
  9. "org.springframework:spring-context:$springVersion",
  10. "org.springframework:spring-expression:$springVersion",
  11. "org.springframework:spring-web:$springVersion"
  12. provided 'javax.servlet.jsp:javax.servlet.jsp-api:2.2.1',
  13. "javax.servlet:javax.servlet-api:$servletApiVersion"
  14. testCompile "org.codehaus.groovy:groovy-all:$groovyVersion",
  15. spockDependencies
  16. testRuntime "javax.servlet:jstl:$jstlVersion"
  17. }
  18. configure(test) {
  19. systemProperties['springSecurityVersion'] = version
  20. }