taglibs.gradle 959 B

12345678910111213141516171819202122232425262728
  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. testCompile("org.spockframework:spock-core:$spockVersion") {
  16. exclude group:'junit', module:'junit-dep'
  17. }
  18. testRuntime "javax.servlet:jstl:$jstlVersion"
  19. }
  20. configure(test) {
  21. systemProperties['springSecurityVersion'] = version
  22. }