- 打包 common 模块缺少 pagehelper 依赖问题
All checks were successful
Build and Push Docker Image / build (push) Successful in 5m30s

This commit is contained in:
BertrandC 2025-05-19 15:13:04 +08:00
parent 79d27f6986
commit cec4b26323

View File

@ -26,6 +26,12 @@
<artifactId>commons-fileupload</artifactId>
<version>1.4</version>
</dependency>
<!-- pagehelper 分页插件 -->
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper-spring-boot-starter</artifactId>
<version>${pagehelper.boot.version}</version>
</dependency>
<!-- Spring框架基本的核心工具 -->
<dependency>
<groupId>org.springframework</groupId>
@ -44,10 +50,16 @@
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper</artifactId>
<version>5.1.9</version>
</dependency>
<!-- pagehelper 分页插件 -->
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper-spring-boot-starter</artifactId>
<version>${pagehelper.boot.version}</version>
</dependency>
<!-- 自定义验证注解 -->