Skip to content

Commit

Permalink
Downgrading JWT Libraries as short-term fix for Public Key Size limit…
Browse files Browse the repository at this point in the history
…ation issue (#114)
  • Loading branch information
akhilkh2000 committed Apr 20, 2024
1 parent b89b854 commit 8a55f94
Showing 1 changed file with 35 additions and 22 deletions.
57 changes: 35 additions & 22 deletions skill-tree/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -91,30 +91,43 @@
<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 todo: uncomment-out when removing older version -->
<!-- <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: 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-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
Expand Down

0 comments on commit 8a55f94

Please sign in to comment.