12345678910111213141516171819202122232425 |
- // Taglibs build file
- apply plugin: 'groovy'
- dependencies {
- compile project(':spring-security-core'),
- project(':spring-security-web'),
- project(':spring-security-acl'),
- "org.springframework:spring-beans:$springVersion",
- "org.springframework:spring-aop:$springVersion",
- "org.springframework:spring-context:$springVersion",
- "org.springframework:spring-expression:$springVersion",
- "org.springframework:spring-web:$springVersion"
- provided 'javax.servlet:jsp-api:2.0',
- "org.apache.tomcat:tomcat-servlet-api:$servletApiVersion"
- testCompile "org.codehaus.groovy:groovy-all:$groovyVersion",
- "org.spockframework:spock-core:$spockVersion"
- testRuntime "javax.servlet:jstl:$jstlVersion"
- }
- configure([test,spring4Test]) {
- systemProperties['springSecurityVersion'] = version
- }
|