15 lines
388 B
Plaintext
15 lines
388 B
Plaintext
plugins {
|
|
id("kotlin")
|
|
id("kotlin-spring")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":common"))
|
|
implementation(project(":common-spring-security"))
|
|
|
|
implementation(project(":security-jwt-common"))
|
|
|
|
implementation("org.springframework.security:spring-security-oauth2-jose")
|
|
implementation("org.springframework.boot:spring-boot-starter-oauth2-resource-server")
|
|
}
|