2
0

spring-security-oauth2-client.gradle 785 B

12345678910111213141516171819202122
  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 powerMock2Dependencies
  13. testCompile 'com.squareup.okhttp3:mockwebserver'
  14. testCompile 'com.fasterxml.jackson.core:jackson-databind'
  15. testCompile 'io.projectreactor.netty:reactor-netty'
  16. testCompile 'io.projectreactor:reactor-test'
  17. provided 'javax.servlet:javax.servlet-api'
  18. }