@@ -540,18 +540,18 @@ If you're building a (non-Android) JDK project, you will want to define the foll
540
540
<dependency >
541
541
<groupId >io.jsonwebtoken</groupId >
542
542
<artifactId >jjwt-api</artifactId >
543
- <version >0.12.1 </version >
543
+ <version >0.12.2 </version >
544
544
</dependency >
545
545
<dependency >
546
546
<groupId >io.jsonwebtoken</groupId >
547
547
<artifactId >jjwt-impl</artifactId >
548
- <version >0.12.1 </version >
548
+ <version >0.12.2 </version >
549
549
<scope >runtime</scope >
550
550
</dependency >
551
551
<dependency >
552
552
<groupId >io.jsonwebtoken</groupId >
553
553
<artifactId >jjwt-jackson</artifactId > <!-- or jjwt-gson if Gson is preferred -->
554
- <version >0.12.1 </version >
554
+ <version >0.12.2 </version >
555
555
<scope >runtime</scope >
556
556
</dependency >
557
557
<!-- Uncomment this next dependency if you are using:
@@ -574,9 +574,9 @@ If you're building a (non-Android) JDK project, you will want to define the foll
574
574
575
575
``` groovy
576
576
dependencies {
577
- implementation 'io.jsonwebtoken:jjwt-api:0.12.1 '
578
- runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.12.1 '
579
- runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.12.1 ' // or 'io.jsonwebtoken:jjwt-gson:0.12.1 ' for gson
577
+ implementation 'io.jsonwebtoken:jjwt-api:0.12.2 '
578
+ runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.12.2 '
579
+ runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.12.2 ' // or 'io.jsonwebtoken:jjwt-gson:0.12.2 ' for gson
580
580
/*
581
581
Uncomment this next dependency if you are using:
582
582
- JDK 10 or earlier, and you want to use RSASSA-PSS (PS256, PS384, PS512) signature algorithms.
@@ -601,9 +601,9 @@ Add the dependencies to your project:
601
601
602
602
``` groovy
603
603
dependencies {
604
- api('io.jsonwebtoken:jjwt-api:0.12.1 ')
605
- runtimeOnly('io.jsonwebtoken:jjwt-impl:0.12.1 ')
606
- runtimeOnly('io.jsonwebtoken:jjwt-orgjson:0.12.1 ') {
604
+ api('io.jsonwebtoken:jjwt-api:0.12.2 ')
605
+ runtimeOnly('io.jsonwebtoken:jjwt-impl:0.12.2 ')
606
+ runtimeOnly('io.jsonwebtoken:jjwt-orgjson:0.12.2 ') {
607
607
exclude(group: 'org.json', module: 'json') //provided by Android natively
608
608
}
609
609
/*
@@ -2952,7 +2952,7 @@ scope which is the typical JJWT default). That is:
2952
2952
< dependency>
2953
2953
< groupId> io. jsonwebtoken< / groupId>
2954
2954
< artifactId> jjwt- jackson< / artifactId>
2955
- < version> 0.12 . 1 < / version>
2955
+ < version> 0.12 . 2 < / version>
2956
2956
< scope> compile< / scope> < ! -- Not runtime -- >
2957
2957
< / dependency>
2958
2958
```
@@ -2961,7 +2961,7 @@ scope which is the typical JJWT default). That is:
2961
2961
2962
2962
```groovy
2963
2963
dependencies {
2964
- implementation ' io.jsonwebtoken:jjwt-jackson:0.12.1 '
2964
+ implementation ' io.jsonwebtoken:jjwt-jackson:0.12.2 '
2965
2965
}
2966
2966
```
2967
2967
@@ -3069,7 +3069,7 @@ scope which is the typical JJWT default). That is:
3069
3069
<dependency>
3070
3070
<groupId>io.jsonwebtoken</groupId>
3071
3071
<artifactId>jjwt-gson</artifactId>
3072
- <version>0.12.1 </version>
3072
+ <version>0.12.2 </version>
3073
3073
<scope>compile</scope> <!-- Not runtime -->
3074
3074
</dependency>
3075
3075
```
@@ -3078,7 +3078,7 @@ scope which is the typical JJWT default). That is:
3078
3078
3079
3079
```groovy
3080
3080
dependencies {
3081
- implementation ' io. jsonwebtoken: jjwt- gson: 0.12 . 1 '
3081
+ implementation ' io. jsonwebtoken: jjwt- gson: 0.12 . 2 '
3082
3082
}
3083
3083
```
3084
3084
0 commit comments