2
0

spring-security-samples-boot-oauth2webclient-webflux.gradle 679 B

1234567891011121314151617
  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.boot:spring-boot-starter-thymeleaf'
  8. compile 'org.springframework.boot:spring-boot-starter-webflux'
  9. compile 'org.thymeleaf.extras:thymeleaf-extras-springsecurity5'
  10. compile 'io.projectreactor.netty:reactor-netty'
  11. testCompile project(':spring-security-test')
  12. testCompile 'org.springframework.boot:spring-boot-starter-test'
  13. testCompile 'com.squareup.okhttp3:mockwebserver'
  14. }