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'),
|
2014-11-20 17:16:22 -05:00
|
|
|
springCoreDependency,
|
2010-01-10 18:31:23 -05:00
|
|
|
"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-01 14:42:21 -04:00
|
|
|
testCompile "org.codehaus.groovy:groovy-all:$groovyVersion",
|
|
|
|
spockDependencies
|
2013-09-18 18:40:00 -04:00
|
|
|
|
2014-04-11 10:57:18 -04:00
|
|
|
testRuntime "javax.servlet.jsp.jstl:javax.servlet.jsp.jstl-api:$jstlVersion"
|
2013-09-18 18:40:00 -04:00
|
|
|
}
|
|
|
|
|
2014-04-11 10:57:18 -04:00
|
|
|
configure(project.tasks.withType(Test)) {
|
2013-09-18 18:40:00 -04:00
|
|
|
systemProperties['springSecurityVersion'] = version
|
2010-01-10 18:31:23 -05:00
|
|
|
}
|