spring-security-test.gradle 847 B

123456789101112131415161718192021222324
  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-jose')
  9. optional project(':spring-security-oauth2-resource-server')
  10. optional 'io.projectreactor:reactor-core'
  11. optional 'org.springframework:spring-webflux'
  12. provided 'javax.servlet:javax.servlet-api'
  13. testCompile 'com.fasterxml.jackson.core:jackson-databind'
  14. testCompile 'io.projectreactor:reactor-test'
  15. testCompile 'javax.xml.bind:jaxb-api'
  16. testCompile 'org.skyscreamer:jsonassert'
  17. testCompile 'org.springframework:spring-webmvc'
  18. testCompile 'org.springframework:spring-tx'
  19. testCompile powerMock2Dependencies
  20. }