feat: added simple-jwt module to create, verify and read JSON Web Token natively

This commit is contained in:
zihluwang
2025-04-02 20:55:21 +08:00
parent 68bf18d944
commit b1dbc1c0e9
2 changed files with 27 additions and 0 deletions
+1
View File
@@ -25,6 +25,7 @@ include(
"key-pair-loader",
"map-util-unsafe",
"num4j",
"simple-jwt",
"simple-jwt-facade",
"simple-jwt-authzero",
"simple-jwt-spring-boot-starter",
+26
View File
@@ -0,0 +1,26 @@
plugins {
id("java")
}
val artefactVersion: String by project
group = "com.onixbyte"
version = artefactVersion
repositories {
mavenCentral()
}
dependencies {
val jacksonVersion: String by project
implementation(project(":devkit-core"))
implementation(project(":devkit-utils"))
implementation("com.fasterxml.jackson.core:jackson-core:$jacksonVersion")
implementation("com.fasterxml.jackson.core:jackson-databind:$jacksonVersion")
testImplementation(platform("org.junit:junit-bom:5.10.0"))
testImplementation("org.junit.jupiter:junit-jupiter")
}
tasks.test {
useJUnitPlatform()
}