2010-01-10 18:31:23 -05:00
|
|
|
// Taglibs build file
|
2013-09-18 18:40:00 -04:00
|
|
|
apply plugin: 'groovy'
|
2010-01-10 18:31:23 -05:00
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile project(':spring-security-core'),
|
|
|
|
project(':spring-security-web'),
|
|
|
|
project(':spring-security-acl'),
|
|
|
|
"org.springframework:spring-beans:$springVersion",
|
2010-09-07 14:45:37 -04:00
|
|
|
"org.springframework:spring-aop:$springVersion",
|
2010-01-10 18:31:23 -05:00
|
|
|
"org.springframework:spring-context:$springVersion",
|
|
|
|
"org.springframework:spring-expression:$springVersion",
|
|
|
|
"org.springframework:spring-web:$springVersion"
|
|
|
|
|
2014-04-02 09:48:55 -04:00
|
|
|
provided 'javax.servlet.jsp:javax.servlet.jsp-api:2.2.1',
|
|
|
|
"javax.servlet:javax.servlet-api:$servletApiVersion"
|
2012-11-28 18:56:03 -05:00
|
|
|
|
2014-04-02 09:48:55 -04:00
|
|
|
testCompile "org.codehaus.groovy:groovy-all:$groovyVersion"
|
|
|
|
|
|
|
|
testCompile("org.spockframework:spock-core:$spockVersion") {
|
|
|
|
exclude group:'junit', module:'junit-dep'
|
|
|
|
}
|
2013-09-18 18:40:00 -04:00
|
|
|
|
2010-07-20 18:45:20 -04:00
|
|
|
testRuntime "javax.servlet:jstl:$jstlVersion"
|
2013-09-18 18:40:00 -04:00
|
|
|
}
|
|
|
|
|
2014-02-19 17:13:30 -05:00
|
|
|
configure(test) {
|
2013-09-18 18:40:00 -04:00
|
|
|
systemProperties['springSecurityVersion'] = version
|
2010-01-10 18:31:23 -05:00
|
|
|
}
|