spring-security-oauth2-resource-server.gradle 1.2 KB

1234567891011121314151617181920212223242526272829
  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. optional project(':spring-security-oauth2-jose')
  9. optional 'com.nimbusds:oauth2-oidc-sdk'
  10. optional 'io.projectreactor:reactor-core'
  11. optional 'org.springframework:spring-webflux'
  12. provided 'jakarta.servlet:jakarta.servlet-api'
  13. testImplementation project(path: ':spring-security-oauth2-jose', configuration: 'tests')
  14. testImplementation 'com.squareup.okhttp3:mockwebserver'
  15. testImplementation 'com.fasterxml.jackson.core:jackson-databind'
  16. testImplementation 'io.projectreactor.netty:reactor-netty'
  17. testImplementation 'io.projectreactor:reactor-test'
  18. testImplementation "org.assertj:assertj-core"
  19. testImplementation "org.junit.jupiter:junit-jupiter-api"
  20. testImplementation "org.junit.jupiter:junit-jupiter-params"
  21. testImplementation "org.junit.jupiter:junit-jupiter-engine"
  22. testImplementation "org.mockito:mockito-core"
  23. testImplementation "org.mockito:mockito-junit-jupiter"
  24. testImplementation "org.springframework:spring-test"
  25. }