1
0
mirror of synced 2026-08-01 15:57:05 +00:00
Files
spring-security/samples/boot/authcodegrant/spring-security-samples-boot-authcodegrant.gradle
T

17 lines
611 B
Groovy
Raw Normal View History

2018-01-30 15:18:03 -05:00
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'
2018-07-30 14:27:18 -05:00
compile 'io.projectreactor.netty:reactor-netty'
2018-01-30 15:18:03 -05:00
testCompile project(':spring-security-test')
testCompile 'org.springframework.boot:spring-boot-starter-test'
}