1234567891011121314151617181920212223242526 |
- // Taglibs build file
- apply plugin: 'groovy'
- dependencies {
- compile project(':spring-security-core'),
- project(':spring-security-web'),
- project(':spring-security-acl'),
- springCoreDependency,
- "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:javax.servlet.jsp-api:2.2.1',
- "javax.servlet:javax.servlet-api:$servletApiVersion"
- testCompile "org.codehaus.groovy:groovy-all:$groovyVersion",
- spockDependencies
- testRuntime "javax.servlet.jsp.jstl:javax.servlet.jsp.jstl-api:$jstlVersion"
- }
- configure(project.tasks.withType(Test)) {
- systemProperties['springSecurityVersion'] = version
- }
|