feat(jwt): implement JWT-based authentication system
This commit is contained in:
16
weblog-module-jwt/build.gradle.kts
Normal file
16
weblog-module-jwt/build.gradle.kts
Normal file
@@ -0,0 +1,16 @@
|
||||
plugins {
|
||||
`java-library`
|
||||
}
|
||||
|
||||
group = "com.hanserwei.jwt"
|
||||
version = project.parent?.version ?: "0.0.1-SNAPSHOT"
|
||||
|
||||
dependencies {
|
||||
implementation("org.springframework.boot:spring-boot-starter-security")
|
||||
implementation(project(":weblog-module-common"))
|
||||
|
||||
// jwt
|
||||
api(libs.jjwt.api)
|
||||
runtimeOnly(libs.jjwt.impl)
|
||||
runtimeOnly(libs.jjwt.jackson)
|
||||
}
|
||||
Reference in New Issue
Block a user