spring-security-samples-boot-oauth2resourceserver-jwe.gradle 531 B

1234567891011121314151617
  1. apply plugin: 'io.spring.convention.spring-sample-boot'
  2. dependencies {
  3. constraints {
  4. management "com.nimbusds:nimbus-jose-jwt:$nimbusJoseJwtVersion"
  5. }
  6. compile project(':spring-security-config')
  7. compile project(':spring-security-oauth2-jose')
  8. compile project(':spring-security-oauth2-resource-server')
  9. compile 'org.springframework.boot:spring-boot-starter-web'
  10. compile 'com.squareup.okhttp3:mockwebserver'
  11. testCompile project(':spring-security-test')
  12. testCompile 'org.springframework.boot:spring-boot-starter-test'
  13. }