Add authcodegrant-webflux sample

Issue: gh-5620
This commit is contained in:
Rob Winch
2018-08-01 12:44:19 -05:00
parent 85d5d4083f
commit 7c5c274854
10 changed files with 394 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
apply plugin: 'io.spring.convention.spring-sample-boot'
dependencies {
compile project(':spring-security-config')
compile project(':spring-security-oauth2-client')
compile 'org.springframework.boot:spring-boot-starter-thymeleaf'
compile 'org.springframework.boot:spring-boot-starter-webflux'
compile 'org.thymeleaf.extras:thymeleaf-extras-springsecurity4'
compile 'io.projectreactor.netty:reactor-netty'
testCompile project(':spring-security-test')
testCompile 'org.springframework.boot:spring-boot-starter-test'
}