2
0

spring-security-test.gradle 979 B

1234567891011121314151617181920212223242526
  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-webflux'
  13. provided 'javax.servlet:javax.servlet-api'
  14. testCompile project(path : ':spring-security-config', configuration : 'tests')
  15. testCompile 'com.fasterxml.jackson.core:jackson-databind'
  16. testCompile 'io.projectreactor:reactor-test'
  17. testCompile 'javax.xml.bind:jaxb-api'
  18. testCompile 'org.skyscreamer:jsonassert'
  19. testCompile 'org.springframework:spring-webmvc'
  20. testCompile 'org.springframework:spring-tx'
  21. testCompile powerMock2Dependencies
  22. }