taglibs.gradle 853 B

1234567891011121314151617181920212223242526
  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. springCoreDependency,
  8. "org.springframework:spring-beans:$springVersion",
  9. "org.springframework:spring-aop:$springVersion",
  10. "org.springframework:spring-context:$springVersion",
  11. "org.springframework:spring-expression:$springVersion",
  12. "org.springframework:spring-web:$springVersion"
  13. provided 'javax.servlet.jsp:javax.servlet.jsp-api:2.2.1',
  14. "javax.servlet:javax.servlet-api:$servletApiVersion"
  15. testCompile "org.codehaus.groovy:groovy-all:$groovyVersion",
  16. spockDependencies
  17. testRuntime "javax.servlet.jsp.jstl:javax.servlet.jsp.jstl-api:$jstlVersion"
  18. }
  19. configure(project.tasks.withType(Test)) {
  20. systemProperties['springSecurityVersion'] = version
  21. }