spring-security-config2.gradle 649 B

123456789101112131415161718
  1. apply plugin: 'io.spring.convention.spring-module'
  2. dependencies {
  3. compile 'org.springframework.security:spring-security-core'
  4. compile 'org.springframework.security:spring-security-config'
  5. compile springCoreDependency
  6. optional project(':spring-security-oauth2-authorization-server')
  7. optional project(path: ':spring-security-oauth2-authorization-server', configuration: 'tests')
  8. testCompile 'org.springframework.security:spring-security-test'
  9. testCompile 'junit:junit'
  10. testCompile 'org.assertj:assertj-core'
  11. testCompile 'org.mockito:mockito-core'
  12. testCompile 'com.jayway.jsonpath:json-path'
  13. provided 'javax.servlet:javax.servlet-api'
  14. }