spring-security-oauth2-client.gradle 918 B

123456789101112131415161718192021222324
  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. compile 'com.nimbusds:oauth2-oidc-sdk'
  8. optional project(':spring-security-oauth2-jose')
  9. optional 'io.projectreactor:reactor-core'
  10. optional 'org.springframework:spring-webflux'
  11. testCompile project(path: ':spring-security-oauth2-core', configuration: 'tests')
  12. testCompile project(path: ':spring-security-oauth2-jose', configuration: 'tests')
  13. testCompile powerMock2Dependencies
  14. testCompile 'com.squareup.okhttp3:mockwebserver'
  15. testCompile 'com.fasterxml.jackson.core:jackson-databind'
  16. testCompile 'io.projectreactor.netty:reactor-netty'
  17. testCompile 'io.projectreactor:reactor-test'
  18. testCompile 'io.projectreactor.tools:blockhound'
  19. provided 'javax.servlet:javax.servlet-api'
  20. }