spring-security-oauth2-resource-server.gradle 755 B

123456789101112131415161718192021
  1. apply plugin: 'io.spring.convention.spring-module'
  2. dependencies {
  3. compile project(':spring-security-core')
  4. compile project(':spring-security-oauth2-core')
  5. compile project(':spring-security-web')
  6. compile springCoreDependency
  7. optional project(':spring-security-oauth2-jose')
  8. optional 'com.nimbusds:oauth2-oidc-sdk'
  9. optional 'io.projectreactor:reactor-core'
  10. optional 'org.springframework:spring-webflux'
  11. provided 'javax.servlet:javax.servlet-api'
  12. testCompile project(path: ':spring-security-oauth2-jose', configuration: 'tests')
  13. testCompile 'com.squareup.okhttp3:mockwebserver'
  14. testCompile 'com.fasterxml.jackson.core:jackson-databind'
  15. testCompile 'io.projectreactor.netty:reactor-netty-http'
  16. testCompile 'io.projectreactor:reactor-test'
  17. }