spring-security-oauth2-client.gradle 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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 'org.springframework:spring-core'
  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 'com.squareup.okhttp3:mockwebserver'
  19. testImplementation 'io.projectreactor.netty:reactor-netty'
  20. testImplementation 'io.projectreactor:reactor-test'
  21. testImplementation 'org.skyscreamer:jsonassert'
  22. testImplementation 'io.r2dbc:r2dbc-h2:1.0.0.RELEASE'
  23. testImplementation 'io.r2dbc:r2dbc-spi-test:0.9.1.RELEASE'
  24. testImplementation "org.assertj:assertj-core"
  25. testImplementation "org.junit.jupiter:junit-jupiter-api"
  26. testImplementation "org.junit.jupiter:junit-jupiter-params"
  27. testImplementation "org.junit.jupiter:junit-jupiter-engine"
  28. testImplementation "org.mockito:mockito-core"
  29. testImplementation "org.mockito:mockito-junit-jupiter"
  30. testImplementation "org.springframework:spring-test"
  31. testRuntimeOnly 'org.hsqldb:hsqldb'
  32. testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
  33. provided 'jakarta.servlet:jakarta.servlet-api'
  34. }