hutool/hutool-jwt/pom.xml

46 lines
1.3 KiB
XML
Raw Normal View History

2021-06-10 16:26:31 +08:00
<?xml version='1.0' encoding='utf-8'?>
2021-07-12 20:22:30 +08:00
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
2021-06-10 16:26:31 +08:00
<modelVersion>4.0.0</modelVersion>
<packaging>jar</packaging>
<parent>
<groupId>cn.hutool</groupId>
<artifactId>hutool-parent</artifactId>
2023-06-17 01:26:48 +08:00
<version>5.8.21</version>
2021-06-10 16:26:31 +08:00
</parent>
<artifactId>hutool-jwt</artifactId>
<name>${project.artifactId}</name>
2021-06-13 23:46:45 +08:00
<description>JWT生成、解析和验证实现</description>
2021-06-10 16:26:31 +08:00
2021-06-10 22:54:45 +08:00
<properties>
2023-03-04 13:48:40 +08:00
<Automatic-Module-Name>cn.hutool.jwt</Automatic-Module-Name>
2021-06-10 22:54:45 +08:00
<!-- versions -->
2023-07-08 18:10:09 +08:00
<bouncycastle.version>1.75</bouncycastle.version>
2021-06-10 22:54:45 +08:00
</properties>
2021-06-10 16:26:31 +08:00
<dependencies>
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-json</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-crypto</artifactId>
<version>${project.parent.version}</version>
</dependency>
2021-06-13 23:46:45 +08:00
<!-- 测试特殊算法 -->
2021-06-10 22:54:45 +08:00
<dependency>
<groupId>org.bouncycastle</groupId>
2023-07-08 18:55:46 +08:00
<artifactId>bcpkix-jdk18on</artifactId>
2021-06-10 22:54:45 +08:00
<version>${bouncycastle.version}</version>
<scope>test</scope>
</dependency>
2021-06-10 16:26:31 +08:00
</dependencies>
</project>