spring-security-samples-boot-authcodegrant-webflux.gradle 525 B

12345678910111213
  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 'org.springframework.boot:spring-boot-starter-thymeleaf'
  6. compile 'org.springframework.boot:spring-boot-starter-webflux'
  7. compile 'org.thymeleaf.extras:thymeleaf-extras-springsecurity4'
  8. compile 'io.projectreactor.netty:reactor-netty'
  9. testCompile project(':spring-security-test')
  10. testCompile 'org.springframework.boot:spring-boot-starter-test'
  11. }