Skip to content

Instantly share code, notes, and snippets.

@jei0486
Created January 10, 2023 02:19
Show Gist options
  • Save jei0486/4f53d44e09b1aa5ff0140346e43db06d to your computer and use it in GitHub Desktop.
Save jei0486/4f53d44e09b1aa5ff0140346e43db06d to your computer and use it in GitHub Desktop.
opqaque-token
// build.gradle
ext {
set('springCloudVersion', "2021.0.5")
}
dependencyManagement {
imports {
mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}"
}
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-oauth2-resource-server'
implementation 'org.springframework.boot:spring-boot-starter-security'
    
    // ... 생략
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment