Skip to content

Commit

Permalink
(Real-Dev-Squad#114)-Downgrading JWT Libraries as short-term fix for …
Browse files Browse the repository at this point in the history
…Public Key Size limitation issue (Real-Dev-Squad#115)
  • Loading branch information
akhilkh2000 authored and MehulKChaudhari committed May 9, 2024
1 parent 12662a0 commit f1b84fc
Showing 1 changed file with 13 additions and 24 deletions.
37 changes: 13 additions & 24 deletions skill-tree/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -91,30 +91,19 @@
<artifactId>spring-boot-starter-security</artifactId>
</dependency>

<!-- io.jsonwebtoken -->
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-api</artifactId>
<version>${io.jsonwebtoken.version}</version>
</dependency>
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-api</artifactId>
<version>${io.jsonwebtoken.version}</version>
</dependency>
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-impl</artifactId>
<version>${io.jsonwebtoken.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-jackson</artifactId>
<version>${io.jsonwebtoken.version}</version>
</dependency>
<!-- io.jsonwebtoken -->

<!--Start io.jsonwebtoken: todo: remove the below block when rolling back to new version -->
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt</artifactId>
<version>0.9.1</version>
</dependency>
<!-- This package is required by the jjwt library versions < 0.10.0 - https://github.com/jwtk/jjwt/issues/297 -->
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.3.1</version>
</dependency>
<!--End io.jsonwebtoken-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
Expand Down

0 comments on commit f1b84fc

Please sign in to comment.