Files
spring-authorization-server/samples/boot/oauth2-integration/authorizationserver/spring-security-samples-boot-oauth2-integrated-authorizationserver.gradle
Steve Riesenberg 4daade7366 Update authorization server sample to use jdbc
Closes gh-329
2021-07-01 14:21:41 -05:00

13 lines
473 B
Groovy

apply plugin: 'io.spring.convention.spring-sample-boot'
dependencies {
compile 'org.springframework.boot:spring-boot-starter-web'
compile 'org.springframework.boot:spring-boot-starter-security'
compile 'org.springframework.boot:spring-boot-starter-jdbc'
compile project(':spring-security-oauth2-authorization-server')
runtimeOnly 'com.h2database:h2'
testCompile 'org.springframework.boot:spring-boot-starter-test'
testCompile 'net.sourceforge.htmlunit:htmlunit'
}