jsonwebtoken-jjwt
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.sourceforge.github.components</groupId>
<artifactId>jsonwebtoken-jjwt</artifactId>
<version>1.2.2</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
~ @MS 2022-12-13
~ Copyright (c) 2001-2023 萌森
~ 保留所有权利
~ 本软件为萌森工作室所有及包含机密信息,须遵守其相关许可证条款进行使用。
~ Copyright (c) 2001-2023 Meng Sen
~ All rights reserved
~ This software is owned by Mengsen Studio and contains confidential information, and must be used in accordance with its relevant license terms.
~ Website:https://qyg2297248353.top
-->
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.sourceforge.github.components</groupId>
<artifactId>ms-components-parent</artifactId>
<version>1.2.2</version>
</parent>
<artifactId>jsonwebtoken-jjwt</artifactId>
<dependencies>
<!-- JJWT -->
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-api</artifactId>
<version>${io.jsonwebtoken.jjwt.version}</version>
</dependency>
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-impl</artifactId>
<version>${io.jsonwebtoken.jjwt.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-jackson</artifactId>
<version>${io.jsonwebtoken.jjwt.version}</version>
<scope>runtime</scope>
</dependency>
<!-- 如果您使用的是JDK 10或更早版本,并且还想使用 RSASSA-PSS(PS256、PS384、PS512)算法。JDK 11或更高版本不要求这些算法使用它-->
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15on</artifactId>
<version>${io.jsonwebtoken.jjwt.extension.version}</version>
<scope>runtime</scope>
</dependency>
</dependencies>
</project>