2026-01-31 17:55:58 +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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
|
|
<parent>
|
|
|
|
|
|
<groupId>com.pangu</groupId>
|
|
|
|
|
|
<artifactId>pangu-user-platform</artifactId>
|
|
|
|
|
|
<version>1.0.0</version>
|
|
|
|
|
|
</parent>
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
|
|
|
|
<artifactId>pangu-system</artifactId>
|
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
|
|
|
|
<name>pangu-system</name>
|
|
|
|
|
|
<description>盘古系统模块(业务代码)</description>
|
|
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
2026-01-31 23:09:12 +08:00
|
|
|
|
<!-- Spring Boot Web(拦截器、WebMvcConfigurer 需 spring-webmvc) -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
|
</dependency>
|
2026-01-31 17:55:58 +08:00
|
|
|
|
<!-- pangu-common -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.pangu</groupId>
|
|
|
|
|
|
<artifactId>pangu-common</artifactId>
|
|
|
|
|
|
</dependency>
|
2026-01-31 23:52:37 +08:00
|
|
|
|
<!-- EasyExcel -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
|
|
<artifactId>easyexcel</artifactId>
|
|
|
|
|
|
</dependency>
|
2026-02-01 00:07:18 +08:00
|
|
|
|
<!-- Spring Boot Test -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
|
</dependency>
|
2026-02-02 07:52:00 +08:00
|
|
|
|
<!-- MySQL 驱动,测试连接远程库 -->
|
2026-02-02 07:39:52 +08:00
|
|
|
|
<dependency>
|
2026-02-02 07:52:00 +08:00
|
|
|
|
<groupId>com.mysql</groupId>
|
|
|
|
|
|
<artifactId>mysql-connector-j</artifactId>
|
2026-02-02 07:39:52 +08:00
|
|
|
|
<scope>test</scope>
|
|
|
|
|
|
</dependency>
|
2026-01-31 17:55:58 +08:00
|
|
|
|
</dependencies>
|
|
|
|
|
|
</project>
|