spring-security-config2.gradle 685 B

123456789101112131415161718192021
  1. apply plugin: 'io.spring.convention.spring-module'
  2. dependencies {
  3. compile project(':spring-security-oauth2-authorization-server')
  4. compile 'org.springframework.security:spring-security-core'
  5. compile 'org.springframework.security:spring-security-config'
  6. compile springCoreDependency
  7. testCompile 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. }
  15. jacoco {
  16. toolVersion = '0.8.5'
  17. }