spring-security-oauth2-jose.gradle 949 B

1234567891011121314151617181920212223
  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 'org.springframework:spring-core'
  7. api 'com.nimbusds:nimbus-jose-jwt'
  8. optional 'io.projectreactor:reactor-core'
  9. optional 'org.springframework:spring-webflux'
  10. testImplementation 'com.squareup.okhttp3:mockwebserver'
  11. testImplementation 'io.projectreactor.netty:reactor-netty'
  12. testImplementation 'com.fasterxml.jackson.core:jackson-databind'
  13. testImplementation "org.assertj:assertj-core"
  14. testImplementation "org.junit.jupiter:junit-jupiter-api"
  15. testImplementation "org.junit.jupiter:junit-jupiter-params"
  16. testImplementation "org.junit.jupiter:junit-jupiter-engine"
  17. testImplementation "org.mockito:mockito-core"
  18. testImplementation "org.mockito:mockito-junit-jupiter"
  19. testImplementation "org.springframework:spring-test"
  20. }