taglibs.gradle 899 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-api:2.0',
  13. "org.apache.tomcat:tomcat-servlet-api:$servletApiVersion"
  14. testCompile "org.codehaus.groovy:groovy-all:$groovyVersion",
  15. "org.spockframework:spock-core:$spockVersion"
  16. testRuntime "javax.servlet:jstl:$jstlVersion"
  17. }
  18. configure([test,spring4Test]) {
  19. systemProperties['springSecurityVersion'] = version
  20. }