spring-security-test.gradle 1.1 KB

12345678910111213141516171819202122232425262728
  1. apply plugin: 'io.spring.convention.spring-module'
  2. dependencies {
  3. api project(':spring-security-core')
  4. api project(':spring-security-web')
  5. api 'org.springframework:spring-core'
  6. api 'org.springframework:spring-test'
  7. optional project(':spring-security-config')
  8. optional project(':spring-security-oauth2-client')
  9. optional project(':spring-security-oauth2-jose')
  10. optional project(':spring-security-oauth2-resource-server')
  11. optional 'io.projectreactor:reactor-core'
  12. optional 'org.springframework:spring-webmvc'
  13. optional 'org.springframework:spring-webflux'
  14. provided 'javax.servlet:javax.servlet-api'
  15. testImplementation project(path : ':spring-security-config', configuration : 'tests')
  16. testImplementation 'com.fasterxml.jackson.core:jackson-databind'
  17. testImplementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310'
  18. testImplementation 'io.projectreactor:reactor-test'
  19. testImplementation 'javax.xml.bind:jaxb-api'
  20. testImplementation 'org.skyscreamer:jsonassert'
  21. testImplementation 'org.springframework:spring-webmvc'
  22. testImplementation 'org.springframework:spring-tx'
  23. testImplementation powerMock2Dependencies
  24. }