spring-security-test.gradle 459 B

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