Skip to content

Commit fe88788

Browse files
author
zihluwang
committed
feat: added ECDSA-based algorithm support
make the simple-jwt auth0 implementation can use ECDSA-based algorithms BREAKING CHANGE: the io.jsonwebtoken:jjwt implementation was discontinued since its design made a big challenge to encapsulation
1 parent 62b8cb8 commit fe88788

File tree

21 files changed

+343
-1476
lines changed

21 files changed

+343
-1476
lines changed

gradle.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
# limitations under the License.
1616
#
1717

18-
jacksonVersion=2.17.0
18+
jacksonVersion=2.17.2
1919
javaJwtVersion=4.4.0
20-
jjwtVersion=0.12.5
20+
jjwtVersion=0.12.6
2121
junitVersion=5.10.2
2222
logbackVersion=1.5.4
2323
lombokVersion=1.18.30
@@ -26,7 +26,7 @@ springVersion=6.1.3
2626
springBootVersion=3.2.3
2727

2828
buildGroupId=com.onixbyte
29-
buildVersion=1.5.0
29+
buildVersion=1.6.0
3030
projectUrl=https://onixbyte.com/JDevKit
3131
projectGithubUrl=https://github.com/OnixByte/JDevKit
3232
licenseName=The Apache License, Version 2.0

settings.gradle.kts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,11 @@ rootProject.name = "JDevKit"
2020
include(
2121
"devkit-core",
2222
"devkit-utils",
23+
"map-util-unsafe",
2324
"guid",
24-
"webcal",
25+
"key-pair-loader",
2526
"simple-jwt-facade",
2627
"simple-jwt-authzero",
27-
"simple-jwt-jjwt",
2828
"simple-jwt-spring-boot-starter",
2929
"property-guard-spring-boot-starter"
3030
)
31-
include("map-util-unsafe")
32-
include("key-pair-loader")

0 commit comments

Comments
 (0)