2020-04-24 02:37:17 +07:00
|
|
|
apply plugin: 'io.spring.convention.spring-sample-boot'
|
|
|
|
|
|
|
|
dependencies {
|
2020-04-19 03:41:05 +07:00
|
|
|
implementation 'org.springframework.boot:spring-boot-starter-web'
|
|
|
|
implementation 'org.springframework.boot:spring-boot-starter-security'
|
|
|
|
implementation 'com.nimbusds:oauth2-oidc-sdk'
|
2020-05-06 14:25:09 +07:00
|
|
|
implementation project(':spring-authorization-server-core')
|
2020-04-19 03:41:05 +07:00
|
|
|
|
2020-04-24 02:37:17 +07:00
|
|
|
testImplementation('org.springframework.boot:spring-boot-starter-test') {
|
|
|
|
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
test {
|
|
|
|
useJUnitPlatform()
|
|
|
|
}
|