spring-authorization-server-core.gradle 871 B

1234567891011121314151617181920212223242526
  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. provided 'javax.servlet:javax.servlet-api'
  18. }
  19. jacoco {
  20. toolVersion = '0.8.5'
  21. }