2
0

spring-security-itest-context.gradle 1.2 KB

1234567891011121314151617181920212223242526272829
  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(path: ':spring-security-web')
  11. testImplementation project(path: ':spring-security-web', configuration: 'tests')
  12. testImplementation 'jakarta.servlet:jakarta.servlet-api'
  13. testImplementation 'org.springframework:spring-web'
  14. testImplementation "org.assertj:assertj-core"
  15. testImplementation "org.junit.jupiter:junit-jupiter-api"
  16. testImplementation "org.junit.jupiter:junit-jupiter-params"
  17. testImplementation "org.junit.jupiter:junit-jupiter-engine"
  18. testImplementation "org.mockito:mockito-core"
  19. testImplementation "org.mockito:mockito-junit-jupiter"
  20. testImplementation "org.springframework:spring-test"
  21. testRuntimeOnly project(':spring-security-config')
  22. testRuntimeOnly 'org.aspectj:aspectjweaver'
  23. testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
  24. }
  25. System.setProperty('python.cachedir.skip', 'true')