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

1234567891011121314
  1. apply plugin: 'io.spring.convention.spring-sample-boot'
  2. dependencies {
  3. compile project(':spring-security-config')
  4. compile project(':spring-security-oauth2-client')
  5. compile project(':spring-security-oauth2-jose')
  6. compile 'org.springframework.boot:spring-boot-starter-thymeleaf'
  7. compile 'org.springframework.boot:spring-boot-starter-webflux'
  8. compile 'org.thymeleaf.extras:thymeleaf-extras-springsecurity5'
  9. compile 'io.projectreactor.netty:reactor-netty'
  10. testCompile project(':spring-security-test')
  11. testCompile 'org.springframework.boot:spring-boot-starter-test'
  12. }