jdevelops-apis-jwt
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>cn.tannn.jdevelops</groupId> <artifactId>jdevelops-apis-jwt</artifactId> <version>1.0.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>cn.tannn.jdevelops</groupId> <artifactId>jdevelops-apis</artifactId> <version>1.0.1</version> </parent> <artifactId>jdevelops-apis-jwt</artifactId> <version>1.0.1</version> <name>jdevelops :: apis :: jwt</name> <description>jwt 工具 使用的是[jose4j](https://bitbucket.org/b_c/jose4j/src) [jwt](https://bitbucket.org/b_c/jose4j/wiki/JWT%20Examples) [tokenSecret加密方式 hmacsha256 ](http://www.jsons.cn/allencrypt/)</description> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <dependencies> <dependency> <groupId>org.bitbucket.b_c</groupId> <artifactId>jose4j</artifactId> <version>0.9.4</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.alibaba.fastjson2</groupId> <artifactId>fastjson2</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>cn.tannn.jdevelops</groupId> <artifactId>jdevelops-annotations-web</artifactId> <version>1.0.1</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-autoconfigure</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>cn.tannn.jdevelops</groupId> <artifactId>jdevelops-apis-exception</artifactId> <version>1.0.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <scope>test</scope> </dependency> </dependencies> </project>