2025-02-11 15:27:15 +08:00
|
|
|
|
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<parent>
|
|
|
|
|
<artifactId>ff</artifactId>
|
|
|
|
|
<groupId>com.ff</groupId>
|
|
|
|
|
<version>0.0.1</version>
|
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
<groupId>com.ff</groupId>
|
2025-02-27 16:26:02 +08:00
|
|
|
|
<artifactId>ff-game</artifactId>
|
2025-02-11 15:27:15 +08:00
|
|
|
|
<version>0.0.1</version>
|
2025-04-11 14:39:54 +08:00
|
|
|
|
<name>ff-game</name>
|
|
|
|
|
<description>ff-game</description>
|
2025-02-11 15:27:15 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
2025-04-11 14:39:54 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.ff</groupId>
|
|
|
|
|
<artifactId>ff-mysql-entity</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.xuxueli</groupId>
|
|
|
|
|
<artifactId>xxl-job-core</artifactId>
|
|
|
|
|
</dependency>
|
2025-04-11 10:59:27 +08:00
|
|
|
|
<!--<dependency>
|
|
|
|
|
<groupId>org.apache.rocketmq</groupId>
|
|
|
|
|
<artifactId>rocketmq-spring-boot-starter</artifactId>
|
|
|
|
|
<version>2.4.10</version> <!– 请检查最新版本 –>
|
|
|
|
|
</dependency>-->
|
2025-02-11 15:27:15 +08:00
|
|
|
|
<!-- spring-boot-devtools -->
|
2025-04-11 14:39:54 +08:00
|
|
|
|
<!--<dependency>
|
2025-02-11 15:27:15 +08:00
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-devtools</artifactId>
|
2025-04-11 14:39:54 +08:00
|
|
|
|
<optional>true</optional> <!– 表示依赖不会传递 –>
|
|
|
|
|
</dependency>-->
|
2025-03-25 10:00:42 +08:00
|
|
|
|
<!-- Jackson XML 数据格式支持 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fasterxml.jackson.dataformat</groupId>
|
|
|
|
|
<artifactId>jackson-dataformat-xml</artifactId>
|
|
|
|
|
</dependency>
|
2025-02-11 15:27:15 +08:00
|
|
|
|
<!-- Mysql驱动包 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- 定时任务 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.quartz-scheduler</groupId>
|
|
|
|
|
<artifactId>quartz</artifactId>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>com.mchange</groupId>
|
|
|
|
|
<artifactId>c3p0</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
|
<artifactId>netty-all</artifactId>
|
|
|
|
|
<version>4.1.111.Final</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.socket</groupId>
|
|
|
|
|
<artifactId>socket.io-client</artifactId>
|
|
|
|
|
<version>1.0.0</version>
|
|
|
|
|
</dependency>
|
2025-02-25 10:05:13 +08:00
|
|
|
|
|
2025-04-11 14:39:54 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.dtflys.forest</groupId>
|
|
|
|
|
<artifactId>forest-spring-boot-starter</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
|
<artifactId>druid-spring-boot-starter</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- 验证码 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>pro.fessional</groupId>
|
|
|
|
|
<artifactId>kaptcha</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 获取系统信息 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.github.oshi</groupId>
|
|
|
|
|
<artifactId>oshi-core</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- pagehelper 分页插件 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.github.pagehelper</groupId>
|
|
|
|
|
<artifactId>pagehelper-spring-boot-starter</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- 自定义验证注解 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-validation</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!--常用工具类 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- 阿里JSON解析器 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alibaba.fastjson2</groupId>
|
|
|
|
|
<artifactId>fastjson2</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- io常用工具类 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- excel工具 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
|
|
<artifactId>poi-ooxml</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- Token生成与解析-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.jsonwebtoken</groupId>
|
|
|
|
|
<artifactId>jjwt</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- redis 缓存操作 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- 解析客户端操作系统、浏览器等 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>eu.bitwalker</groupId>
|
|
|
|
|
<artifactId>UserAgentUtils</artifactId>
|
|
|
|
|
</dependency>
|
2025-02-25 10:05:13 +08:00
|
|
|
|
|
2025-04-11 14:39:54 +08:00
|
|
|
|
<!-- 二维码生成 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.zxing</groupId>
|
|
|
|
|
<artifactId>core</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.zxing</groupId>
|
|
|
|
|
<artifactId>javase</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- spring security 安全认证 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-security</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- SpringBoot 拦截器 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-aop</artifactId>
|
|
|
|
|
</dependency>
|
2025-02-11 15:27:15 +08:00
|
|
|
|
|
2025-04-11 14:39:54 +08:00
|
|
|
|
<!-- pool 对象池 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
<artifactId>commons-pool2</artifactId>
|
|
|
|
|
</dependency>
|
2025-02-11 15:27:15 +08:00
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
<version>2.5.15</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
|
|
|
|
|
</configuration>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>repackage</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2025-04-11 14:39:54 +08:00
|
|
|
|
|
2025-02-11 15:27:15 +08:00
|
|
|
|
</plugins>
|
2025-04-11 14:39:54 +08:00
|
|
|
|
<finalName>xk-admin</finalName>
|
2025-02-11 15:27:15 +08:00
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
</project>
|