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

1234567891011121314151617
  1. apply plugin: 'io.spring.convention.spring-sample-boot'
  2. ext['thymeleaf.version'] = '3.0.9.RELEASE'
  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. }