2025-06-10 14:36:26 +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">
|
2025-07-09 14:31:05 +08:00
|
|
|
|
|
2025-06-10 14:36:26 +08:00
|
|
|
|
<parent>
|
|
|
|
|
|
<groupId>zhyc</groupId>
|
|
|
|
|
|
<artifactId>zhyc</artifactId>
|
|
|
|
|
|
<version>3.8.9</version>
|
|
|
|
|
|
</parent>
|
2025-07-09 14:31:05 +08:00
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2025-06-10 14:36:26 +08:00
|
|
|
|
|
|
|
|
|
|
<artifactId>zhyc-module</artifactId>
|
|
|
|
|
|
|
2025-07-09 14:31:05 +08:00
|
|
|
|
<dependencies>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>zhyc</groupId>
|
|
|
|
|
|
<artifactId>zhyc-common</artifactId>
|
|
|
|
|
|
</dependency>
|
2025-07-11 16:40:46 +08:00
|
|
|
|
<dependency>
|
2025-12-10 20:27:11 +08:00
|
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
|
|
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
|
|
|
|
|
<version>3.5.3.2</version> <!-- 用你项目已有的版本 -->
|
2025-07-11 16:40:46 +08:00
|
|
|
|
</dependency>
|
2025-12-22 22:34:18 +08:00
|
|
|
|
|
2025-07-18 12:57:42 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
|
|
</dependency>
|
2026-01-27 15:19:38 +08:00
|
|
|
|
|
|
|
|
|
|
<!-- Spring Boot Web 核心依赖(提供接口能力) -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Tesseract-OCR Java 封装(无需手动操作命令行,简化开发) -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>net.sourceforge.tess4j</groupId>
|
|
|
|
|
|
<artifactId>tess4j</artifactId>
|
|
|
|
|
|
<version>4.5.4</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 文件上传相关依赖(Spring Boot 内置,指定版本兼容) -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>commons-fileupload</groupId>
|
|
|
|
|
|
<artifactId>commons-fileupload</artifactId>
|
|
|
|
|
|
<version>1.4</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 可选:lombok 简化实体类代码(无需手写 getter/setter) -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
|
|
<artifactId>junit-jupiter</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Spring Boot 测试核心依赖(包含 @SpringBootTest 等注解) -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
|
|
<scope>test</scope> <!-- 仅在测试环境生效,不打包到生产环境,不可省略 -->
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-test</artifactId>
|
|
|
|
|
|
</dependency>
|
2025-07-09 14:31:05 +08:00
|
|
|
|
</dependencies>
|
2025-06-10 14:36:26 +08:00
|
|
|
|
|
|
|
|
|
|
</project>
|