spring-security-oauth2-client.gradle 1.3 KB

123456789101112131415161718192021222324252627282930313233
  1. apply plugin: 'io.spring.convention.spring-module'
  2. dependencies {
  3. management platform(project(":spring-security-dependencies"))
  4. api project(':spring-security-core')
  5. api project(':spring-security-oauth2-core')
  6. api project(':spring-security-web')
  7. api springCoreDependency
  8. api 'com.nimbusds:oauth2-oidc-sdk'
  9. optional project(':spring-security-oauth2-jose')
  10. optional 'io.projectreactor:reactor-core'
  11. optional 'org.springframework:spring-webflux'
  12. optional 'com.fasterxml.jackson.core:jackson-databind'
  13. optional 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310'
  14. optional 'org.springframework:spring-jdbc'
  15. optional 'org.springframework:spring-r2dbc'
  16. testImplementation project(path: ':spring-security-oauth2-core', configuration: 'tests')
  17. testImplementation project(path: ':spring-security-oauth2-jose', configuration: 'tests')
  18. testImplementation powerMock2Dependencies
  19. testImplementation 'com.squareup.okhttp3:mockwebserver'
  20. testImplementation 'io.projectreactor.netty:reactor-netty'
  21. testImplementation 'io.projectreactor:reactor-test'
  22. testImplementation 'io.projectreactor.tools:blockhound'
  23. testImplementation 'org.skyscreamer:jsonassert'
  24. testImplementation 'io.r2dbc:r2dbc-h2:0.8.4.RELEASE'
  25. testImplementation 'io.r2dbc:r2dbc-spi-test:0.8.3.RELEASE'
  26. testRuntimeOnly 'org.hsqldb:hsqldb'
  27. provided 'javax.servlet:javax.servlet-api'
  28. }