@@ -543,18 +543,18 @@ If you're building a (non-Android) JDK project, you will want to define the foll
543
543
<dependency >
544
544
<groupId >io.jsonwebtoken</groupId >
545
545
<artifactId >jjwt-api</artifactId >
546
- <version >0.12.3 </version >
546
+ <version >0.12.4 </version >
547
547
</dependency >
548
548
<dependency >
549
549
<groupId >io.jsonwebtoken</groupId >
550
550
<artifactId >jjwt-impl</artifactId >
551
- <version >0.12.3 </version >
551
+ <version >0.12.4 </version >
552
552
<scope >runtime</scope >
553
553
</dependency >
554
554
<dependency >
555
555
<groupId >io.jsonwebtoken</groupId >
556
556
<artifactId >jjwt-jackson</artifactId > <!-- or jjwt-gson if Gson is preferred -->
557
- <version >0.12.3 </version >
557
+ <version >0.12.4 </version >
558
558
<scope >runtime</scope >
559
559
</dependency >
560
560
<!-- Uncomment this next dependency if you are using:
@@ -577,9 +577,9 @@ If you're building a (non-Android) JDK project, you will want to define the foll
577
577
578
578
``` groovy
579
579
dependencies {
580
- implementation 'io.jsonwebtoken:jjwt-api:0.12.3 '
581
- runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.12.3 '
582
- runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.12.3 ' // or 'io.jsonwebtoken:jjwt-gson:0.12.3 ' for gson
580
+ implementation 'io.jsonwebtoken:jjwt-api:0.12.4 '
581
+ runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.12.4 '
582
+ runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.12.4 ' // or 'io.jsonwebtoken:jjwt-gson:0.12.4 ' for gson
583
583
/*
584
584
Uncomment this next dependency if you are using:
585
585
- JDK 10 or earlier, and you want to use RSASSA-PSS (PS256, PS384, PS512) signature algorithms.
@@ -604,9 +604,9 @@ Add the dependencies to your project:
604
604
605
605
``` groovy
606
606
dependencies {
607
- api('io.jsonwebtoken:jjwt-api:0.12.3 ')
608
- runtimeOnly('io.jsonwebtoken:jjwt-impl:0.12.3 ')
609
- runtimeOnly('io.jsonwebtoken:jjwt-orgjson:0.12.3 ') {
607
+ api('io.jsonwebtoken:jjwt-api:0.12.4 ')
608
+ runtimeOnly('io.jsonwebtoken:jjwt-impl:0.12.4 ')
609
+ runtimeOnly('io.jsonwebtoken:jjwt-orgjson:0.12.4 ') {
610
610
exclude(group: 'org.json', module: 'json') //provided by Android natively
611
611
}
612
612
/*
@@ -3040,7 +3040,7 @@ scope which is the typical JJWT default). That is:
3040
3040
< dependency>
3041
3041
< groupId> io. jsonwebtoken< / groupId>
3042
3042
< artifactId> jjwt- jackson< / artifactId>
3043
- < version> 0.12 . 3 < / version>
3043
+ < version> 0.12 . 4 < / version>
3044
3044
< scope> compile< / scope> < ! -- Not runtime -- >
3045
3045
< / dependency>
3046
3046
```
@@ -3049,7 +3049,7 @@ scope which is the typical JJWT default). That is:
3049
3049
3050
3050
```groovy
3051
3051
dependencies {
3052
- implementation ' io.jsonwebtoken:jjwt-jackson:0.12.3 '
3052
+ implementation ' io.jsonwebtoken:jjwt-jackson:0.12.4 '
3053
3053
}
3054
3054
```
3055
3055
@@ -3157,7 +3157,7 @@ scope which is the typical JJWT default). That is:
3157
3157
<dependency>
3158
3158
<groupId>io.jsonwebtoken</groupId>
3159
3159
<artifactId>jjwt-gson</artifactId>
3160
- <version>0.12.3 </version>
3160
+ <version>0.12.4 </version>
3161
3161
<scope>compile</scope> <!-- Not runtime -->
3162
3162
</dependency>
3163
3163
```
@@ -3166,7 +3166,7 @@ scope which is the typical JJWT default). That is:
3166
3166
3167
3167
```groovy
3168
3168
dependencies {
3169
- implementation ' io. jsonwebtoken: jjwt- gson: 0.12 . 3 '
3169
+ implementation ' io. jsonwebtoken: jjwt- gson: 0.12 . 4 '
3170
3170
}
3171
3171
```
3172
3172
0 commit comments