spring-security-itest-context.gradle 1.1 KB

123456789101112131415161718192021222324252627
  1. apply plugin: 'io.spring.convention.spring-test'
  2. dependencies {
  3. implementation platform(project(":spring-security-dependencies"))
  4. implementation project(':spring-security-core')
  5. implementation 'org.python:jython'
  6. implementation 'org.springframework:spring-aop'
  7. implementation 'org.springframework:spring-beans'
  8. implementation 'org.springframework:spring-context'
  9. implementation 'org.springframework:spring-tx'
  10. testImplementation project(':spring-security-web')
  11. testImplementation 'javax.servlet:javax.servlet-api'
  12. testImplementation 'org.springframework:spring-web'
  13. testImplementation "org.assertj:assertj-core"
  14. testImplementation "org.junit.jupiter:junit-jupiter-api"
  15. testImplementation "org.junit.jupiter:junit-jupiter-params"
  16. testImplementation "org.junit.jupiter:junit-jupiter-engine"
  17. testImplementation "org.mockito:mockito-core"
  18. testImplementation "org.mockito:mockito-junit-jupiter"
  19. testImplementation "org.springframework:spring-test"
  20. testRuntimeOnly project(':spring-security-config')
  21. testRuntimeOnly 'org.aspectj:aspectjweaver'
  22. }
  23. System.setProperty('python.cachedir.skip', 'true')