spring-authorization-server-core.gradle 916 B

123456789101112131415161718192021222324252627
  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-web'
  5. compile 'org.springframework.security:spring-security-oauth2-core'
  6. compile springCoreDependency
  7. compile 'com.nimbusds:oauth2-oidc-sdk'
  8. compile 'com.fasterxml.jackson.core:jackson-databind'
  9. optional 'com.nimbusds:nimbus-jose-jwt'
  10. optional 'org.springframework.security:spring-security-oauth2-jose'
  11. testCompile project(path: ':spring-authorization-server-config', configuration: 'tests')
  12. testCompile 'org.springframework:spring-webmvc'
  13. testCompile 'junit:junit'
  14. testCompile 'org.assertj:assertj-core'
  15. testCompile 'org.mockito:mockito-core'
  16. testCompile 'com.squareup.okhttp3:mockwebserver'
  17. testCompile 'com.jayway.jsonpath:json-path'
  18. provided 'javax.servlet:javax.servlet-api'
  19. }
  20. jacoco {
  21. toolVersion = '0.8.5'
  22. }