spring-security-samples-boot-oauth2login.gradle 614 B

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