spring-security-oauth2-jose.gradle 520 B

12345678910111213141516
  1. apply plugin: 'io.spring.convention.spring-module'
  2. dependencies {
  3. compile project(':spring-security-core')
  4. compile project(':spring-security-oauth2-core')
  5. compile springCoreDependency
  6. compile 'com.nimbusds:nimbus-jose-jwt'
  7. optional 'io.projectreactor:reactor-core'
  8. optional 'org.springframework:spring-webflux'
  9. testCompile powerMock2Dependencies
  10. testCompile 'com.squareup.okhttp3:mockwebserver'
  11. testCompile 'io.projectreactor.netty:reactor-netty'
  12. testCompile 'com.fasterxml.jackson.core:jackson-databind'
  13. }