spring-security-samples-boot-oauth2login-webflux.gradle 629 B

12345678910111213141516
  1. apply plugin: 'io.spring.convention.spring-sample-boot'
  2. ext['nimbus-jose-jwt.version'] = nimbusJoseJwtVersion
  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.boot:spring-boot-starter-thymeleaf'
  8. compile 'org.springframework.boot:spring-boot-starter-webflux'
  9. compile 'org.thymeleaf.extras:thymeleaf-extras-springsecurity5'
  10. testCompile project(':spring-security-test')
  11. testCompile 'net.sourceforge.htmlunit:htmlunit'
  12. testCompile 'org.springframework.boot:spring-boot-starter-test'
  13. }