spring-security-test.gradle 502 B

1234567891011121314151617
  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. provided 'javax.servlet:javax.servlet-api'
  10. testCompile 'org.springframework:spring-webmvc'
  11. testCompile 'org.springframework:spring-tx'
  12. testCompile powerMockDependencies
  13. }