Move oauth2 samples under boot directory

Issue gh-5397
This commit is contained in:
Joe Grandja
2018-06-06 09:37:22 -04:00
parent 7ba48e22ec
commit 81e19ad85e
29 changed files with 3 additions and 3 deletions

View File

@@ -0,0 +1,16 @@
apply plugin: 'io.spring.convention.spring-sample-boot'
ext['thymeleaf.version'] = '3.0.9.RELEASE'
dependencies {
compile project(':spring-security-config')
compile project(':spring-security-oauth2-client')
compile 'org.springframework:spring-webflux'
compile 'org.springframework.boot:spring-boot-starter-thymeleaf'
compile 'org.springframework.boot:spring-boot-starter-web'
compile 'org.thymeleaf.extras:thymeleaf-extras-springsecurity4'
compile 'io.projectreactor.ipc:reactor-netty'
testCompile project(':spring-security-test')
testCompile 'org.springframework.boot:spring-boot-starter-test'
}