2024-02-26 19:15:34 +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/xsd/maven-4.0.0.xsd">
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>com.qihang</groupId>
|
|
|
|
|
<artifactId>core</artifactId>
|
2024-05-06 11:40:35 +08:00
|
|
|
<version>2.0.6</version>
|
2024-02-26 19:15:34 +08:00
|
|
|
</parent>
|
|
|
|
|
|
2024-04-11 19:42:50 +08:00
|
|
|
<!-- <groupId>com.qihang</groupId>-->
|
2024-02-26 19:15:34 +08:00
|
|
|
<artifactId>common</artifactId>
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
|
|
<name>common</name>
|
|
|
|
|
<url>http://maven.apache.org</url>
|
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
<spring-boot.version>3.0.2</spring-boot.version>
|
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
|
|
|
|
<version>${spring-boot.version}</version>
|
|
|
|
|
</dependency>
|
2024-03-17 22:32:29 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
|
|
<artifactId>mybatis-plus-spring-boot3-starter</artifactId>
|
|
|
|
|
<version>3.5.5</version>
|
|
|
|
|
</dependency>
|
2024-02-26 19:15:34 +08:00
|
|
|
<!-- Token生成与解析-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.jsonwebtoken</groupId>
|
|
|
|
|
<artifactId>jjwt-api</artifactId>
|
|
|
|
|
<version>${jwt.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.jsonwebtoken</groupId>
|
|
|
|
|
<artifactId>jjwt-impl</artifactId>
|
|
|
|
|
<version>${jwt.version}</version>
|
|
|
|
|
<scope>runtime</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.jsonwebtoken</groupId>
|
|
|
|
|
<artifactId>jjwt-jackson</artifactId>
|
|
|
|
|
<version>${jwt.version}</version>
|
|
|
|
|
<scope>runtime</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- 解析客户端操作系统、浏览器等 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>eu.bitwalker</groupId>
|
|
|
|
|
<artifactId>UserAgentUtils</artifactId>
|
|
|
|
|
<version>1.21</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>jakarta.platform</groupId>
|
|
|
|
|
<artifactId>jakarta.jakartaee-api</artifactId>
|
|
|
|
|
<version>9.1.0</version>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- <dependency>-->
|
|
|
|
|
<!-- <groupId>org.springframework.boot</groupId>-->
|
|
|
|
|
<!-- <artifactId>spring-boot-starter-web</artifactId>-->
|
|
|
|
|
<!-- <exclusions>-->
|
|
|
|
|
<!-- <exclusion>-->
|
|
|
|
|
<!-- <groupId>org.springframework.boot</groupId>-->
|
|
|
|
|
<!-- <artifactId>spring-boot-starter-tomcat</artifactId>-->
|
|
|
|
|
<!-- </exclusion>-->
|
|
|
|
|
<!-- </exclusions>-->
|
|
|
|
|
<!-- <version>3.0.2</version>-->
|
|
|
|
|
<!-- </dependency>-->
|
|
|
|
|
</dependencies>
|
|
|
|
|
</project>
|