2025-09-28 14:20:09 +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">
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>org.xyzh</groupId>
|
|
|
|
|
<artifactId>school-news</artifactId>
|
2025-11-13 19:00:27 +08:00
|
|
|
<version>1.0.0</version>
|
2025-09-28 14:20:09 +08:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
<groupId>org.xyzh</groupId>
|
|
|
|
|
<artifactId>system</artifactId>
|
2025-11-13 19:00:27 +08:00
|
|
|
<version>1.0.0</version>
|
2025-09-28 14:20:09 +08:00
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
<maven.compiler.source>21</maven.compiler.source>
|
|
|
|
|
<maven.compiler.target>21</maven.compiler.target>
|
|
|
|
|
</properties>
|
|
|
|
|
|
2025-09-28 17:32:37 +08:00
|
|
|
<dependencies>
|
|
|
|
|
<!-- API依赖 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.xyzh</groupId>
|
|
|
|
|
<artifactId>api-system</artifactId>
|
2025-11-13 19:00:27 +08:00
|
|
|
<version>1.0.0</version>
|
2025-09-28 17:32:37 +08:00
|
|
|
</dependency>
|
2025-11-14 18:31:39 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.xyzh</groupId>
|
|
|
|
|
<artifactId>api-news</artifactId>
|
|
|
|
|
<version>1.0.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.xyzh</groupId>
|
|
|
|
|
<artifactId>api-study</artifactId>
|
|
|
|
|
<version>1.0.0</version>
|
|
|
|
|
</dependency>
|
2025-09-28 17:32:37 +08:00
|
|
|
|
|
|
|
|
<!-- Common模块依赖 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.xyzh</groupId>
|
|
|
|
|
<artifactId>common-all</artifactId>
|
2025-11-13 19:00:27 +08:00
|
|
|
<version>1.0.0</version>
|
2025-09-28 17:32:37 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- Spring Boot Web -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-logging</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2025-10-05 18:00:29 +08:00
|
|
|
<!-- MyBatis Plus for Spring Boot 3 -->
|
2025-09-28 17:32:37 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.baomidou</groupId>
|
2025-10-05 18:00:29 +08:00
|
|
|
<artifactId>mybatis-plus-spring-boot3-starter</artifactId>
|
2025-09-28 17:32:37 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- MySQL驱动 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.mysql</groupId>
|
|
|
|
|
<artifactId>mysql-connector-j</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- 数据库连接池 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.zaxxer</groupId>
|
|
|
|
|
<artifactId>HikariCP</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- Log4j2 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-log4j2</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
2025-09-28 14:20:09 +08:00
|
|
|
</project>
|