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-03-03 23:45:00 +08:00
|
|
|
<version>5.8.14.M1</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>
|
|
|
|
<!-- versions -->
|
2022-12-27 22:02:14 +08:00
|
|
|
<bouncycastle.version>1.72</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>
|
|
|
|
<artifactId>bcprov-jdk15to18</artifactId>
|
|
|
|
<version>${bouncycastle.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2021-06-10 16:26:31 +08:00
|
|
|
</dependencies>
|
2023-02-28 22:34:17 +08:00
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<index>true</index>
|
|
|
|
<manifest>
|
|
|
|
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
|
|
|
|
</manifest>
|
|
|
|
<manifestEntries>
|
|
|
|
<Build-OS>${os.name}</Build-OS>
|
|
|
|
<Built-By>${user.name}</Built-By>
|
|
|
|
<Build-Jdk>${java.version}</Build-Jdk>
|
|
|
|
<Build-Timestamp>${maven.build.timestamp}</Build-Timestamp>
|
|
|
|
<Automatic-Module-Name>cn.hutool.jwt</Automatic-Module-Name>
|
|
|
|
</manifestEntries>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2021-06-10 16:26:31 +08:00
|
|
|
</project>
|