itest-context.gradle 648 B

1234567891011121314151617
  1. System.setProperty('python.cachedir.skip', 'true')
  2. dependencies {
  3. compile project(':spring-security-core'),
  4. 'aopalliance:aopalliance:1.0',
  5. 'org.python:jython:2.5.0',
  6. "org.springframework:spring-context:$springVersion",
  7. "org.springframework:spring-aop:$springVersion",
  8. "org.springframework:spring-tx:$springVersion",
  9. "org.springframework:spring-beans:$springVersion"
  10. testCompile project(':spring-security-web'),
  11. "javax.servlet:javax.servlet-api:$servletApiVersion",
  12. "org.springframework:spring-web:$springVersion"
  13. testRuntime project(':spring-security-config'),
  14. "org.aspectj:aspectjweaver:$aspectjVersion"
  15. }