spring-security-samples-boot-authcodegrant.gradle 611 B

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