spring-security-test.gradle 697 B

123456789101112131415161718192021
  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 'io.projectreactor:reactor-core'
  9. optional 'org.springframework:spring-webflux'
  10. provided 'javax.servlet:javax.servlet-api'
  11. testCompile 'com.fasterxml.jackson.core:jackson-databind'
  12. testCompile 'io.projectreactor:reactor-test'
  13. testCompile 'org.skyscreamer:jsonassert'
  14. testCompile 'org.springframework:spring-webmvc'
  15. testCompile 'org.springframework:spring-tx'
  16. testCompile powerMock2Dependencies
  17. }