2
0

spring-security-oauth2-jose.gradle 1.2 KB

12345678910111213141516171819202122232425262728
  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 "org.bouncycastle:bcpkix-jdk18on"
  11. testImplementation "org.bouncycastle:bcprov-jdk18on"
  12. testImplementation "jakarta.servlet:jakarta.servlet-api"
  13. testImplementation 'com.squareup.okhttp3:mockwebserver'
  14. testImplementation 'io.projectreactor.netty:reactor-netty'
  15. testImplementation 'com.fasterxml.jackson.core:jackson-databind'
  16. testImplementation "org.assertj:assertj-core"
  17. testImplementation "org.junit.jupiter:junit-jupiter-api"
  18. testImplementation "org.junit.jupiter:junit-jupiter-params"
  19. testImplementation "org.junit.jupiter:junit-jupiter-engine"
  20. testImplementation "org.mockito:mockito-core"
  21. testImplementation "org.mockito:mockito-junit-jupiter"
  22. testImplementation "org.springframework:spring-test"
  23. testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
  24. }