Skip to content

Commit b1dbc1c

Browse files
author
zihluwang
committed
feat: added simple-jwt module to create, verify and read JSON Web Token natively
1 parent 68bf18d commit b1dbc1c

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

settings.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ include(
2525
"key-pair-loader",
2626
"map-util-unsafe",
2727
"num4j",
28+
"simple-jwt",
2829
"simple-jwt-facade",
2930
"simple-jwt-authzero",
3031
"simple-jwt-spring-boot-starter",

simple-jwt/build.gradle.kts

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
plugins {
2+
id("java")
3+
}
4+
5+
val artefactVersion: String by project
6+
7+
group = "com.onixbyte"
8+
version = artefactVersion
9+
10+
repositories {
11+
mavenCentral()
12+
}
13+
14+
dependencies {
15+
val jacksonVersion: String by project
16+
implementation(project(":devkit-core"))
17+
implementation(project(":devkit-utils"))
18+
implementation("com.fasterxml.jackson.core:jackson-core:$jacksonVersion")
19+
implementation("com.fasterxml.jackson.core:jackson-databind:$jacksonVersion")
20+
testImplementation(platform("org.junit:junit-bom:5.10.0"))
21+
testImplementation("org.junit.jupiter:junit-jupiter")
22+
}
23+
24+
tasks.test {
25+
useJUnitPlatform()
26+
}

0 commit comments

Comments
 (0)