Tung TRAN created JAMES-3686:
--------------------------------
Summary: Upgrade JWT's lib version
Key: JAMES-3686
URL: https://issues.apache.org/jira/browse/JAMES-3686
Project: James Server
Issue Type: Improvement
Reporter: Tung TRAN
## Why
A long time since the last JJWT's lib version that we use (0.9.1 release from
2018).
3 years old for a crypto lib is not glop.
Current:
```xml
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt</artifactId>
<version>0.9.1</version>
</dependency>
```
## How
Use the new version: https://github.com/jwtk/jjwt
```xml
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-api</artifactId>
<version>0.11.2</version>
</dependency>
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-impl</artifactId>
<version>0.11.2</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-jackson</artifactId>
<version>0.11.2</version>
<scope>runtime</scope>
</dependency>
```
--
This message was sent by Atlassian Jira
(v8.20.1#820001)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]