| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?xml version="1.0" encoding="UTF-8"?>
- <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/xsd/maven-4.0.0.xsd">
- <parent>
- <artifactId>eladmin</artifactId>
- <groupId>me.zhengjie</groupId>
- <version>2.6</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>eladmin-security</artifactId>
- <name>权限模块</name>
- <properties>
- <jjwt.version>0.11.1</jjwt.version>
- <gson.version>2.9.0</gson.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>me.zhengjie</groupId>
- <artifactId>eladmin-common</artifactId>
- <version>2.6</version>
- </dependency>
- <!-- jwt -->
- <dependency>
- <groupId>io.jsonwebtoken</groupId>
- <artifactId>jjwt-api</artifactId>
- <version>${jjwt.version}</version>
- </dependency>
- <dependency>
- <groupId>io.jsonwebtoken</groupId>
- <artifactId>jjwt-impl</artifactId>
- <version>${jjwt.version}</version>
- </dependency>
- <dependency>
- <groupId>io.jsonwebtoken</groupId>
- <artifactId>jjwt-jackson</artifactId>
- <version>${jjwt.version}</version>
- </dependency>
- <dependency>
- <groupId>com.google.code.gson</groupId>
- <artifactId>gson</artifactId>
- <version>${gson.version}</version>
- </dependency>
- </dependencies>
- </project>
|