spring-security-test.gradle 1.1 KB

12345678910111213141516171819202122232425262728
  1. apply plugin: 'io.spring.convention.spring-module'
  2. dependencies {
  3. compile project(':spring-security-core')
  4. compile project(':spring-security-web')
  5. compile 'org.springframework:spring-core'
  6. compile '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. testCompile project(path : ':spring-security-config', configuration : 'tests')
  16. testCompile 'com.fasterxml.jackson.core:jackson-databind'
  17. testCompile 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310'
  18. testCompile 'io.projectreactor:reactor-test'
  19. testCompile 'javax.xml.bind:jaxb-api'
  20. testCompile 'org.skyscreamer:jsonassert'
  21. testCompile 'org.springframework:spring-webmvc'
  22. testCompile 'org.springframework:spring-tx'
  23. testCompile powerMock2Dependencies
  24. }