spring-security-samples-boot-oauth2webclient.gradle 721 B

123456789101112131415161718
  1. apply plugin: 'io.spring.convention.spring-sample-boot'
  2. ext['nimbus-jose-jwt.version'] = nimbusJoseJwtVersion
  3. dependencies {
  4. compile project(':spring-security-config')
  5. compile project(':spring-security-oauth2-client')
  6. compile project(':spring-security-oauth2-jose')
  7. compile 'org.springframework:spring-webflux'
  8. compile 'org.springframework.boot:spring-boot-starter-thymeleaf'
  9. compile 'org.springframework.boot:spring-boot-starter-web'
  10. compile 'org.thymeleaf.extras:thymeleaf-extras-springsecurity5'
  11. compile 'io.projectreactor.netty:reactor-netty'
  12. testCompile project(':spring-security-test')
  13. testCompile 'org.springframework.boot:spring-boot-starter-test'
  14. testCompile 'com.squareup.okhttp3:mockwebserver'
  15. }