feat: added simple-jwt module to create, verify and read JSON Web Token natively
This commit is contained in:
@@ -25,6 +25,7 @@ include(
|
|||||||
"key-pair-loader",
|
"key-pair-loader",
|
||||||
"map-util-unsafe",
|
"map-util-unsafe",
|
||||||
"num4j",
|
"num4j",
|
||||||
|
"simple-jwt",
|
||||||
"simple-jwt-facade",
|
"simple-jwt-facade",
|
||||||
"simple-jwt-authzero",
|
"simple-jwt-authzero",
|
||||||
"simple-jwt-spring-boot-starter",
|
"simple-jwt-spring-boot-starter",
|
||||||
|
|||||||
@@ -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()
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user