This commit is contained in:
zc
2026-02-27 10:50:07 +08:00
parent 0ee56404c2
commit 86527b9c21
611 changed files with 2741 additions and 2752 deletions

View File

@@ -4,18 +4,18 @@
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>top.ysoft</groupId>
<artifactId>ysoft-admin</artifactId>
<groupId>top.wms</groupId>
<artifactId>wms-admin</artifactId>
<version>${revision}</version>
</parent>
<artifactId>ysoft-webapi</artifactId>
<artifactId>wms-webapi</artifactId>
<description>API 及打包部署模块</description>
<properties>
<!-- ### 打包配置相关 ### -->
<!-- 启动类 -->
<main-class>top.ysoft.admin.YsoftAdminApplication</main-class>
<main-class>top.wms.admin.WmsAdminApplication</main-class>
<!-- 程序 jar 输出目录 -->
<bin-path>bin/</bin-path>
<!-- 配置文件输出目录 -->
@@ -33,26 +33,26 @@
<!-- 系统管理模块(存放系统管理模块相关功能,例如:部门管理、角色管理、用户管理等) -->
<dependency>
<groupId>top.ysoft</groupId>
<artifactId>ysoft-module-system</artifactId>
<groupId>top.wms</groupId>
<artifactId>wms-module-system</artifactId>
</dependency>
<!-- 任务调度插件(后续会改造为独立插件) -->
<dependency>
<groupId>top.ysoft</groupId>
<artifactId>ysoft-plugin-schedule</artifactId>
<groupId>top.wms</groupId>
<artifactId>wms-plugin-schedule</artifactId>
</dependency>
<!-- 能力开放插件(后续会改造为独立插件) -->
<dependency>
<groupId>top.ysoft</groupId>
<artifactId>ysoft-plugin-open</artifactId>
<groupId>top.wms</groupId>
<artifactId>wms-plugin-open</artifactId>
</dependency>
<!-- 代码生成器插件(后续会改造为独立插件) -->
<dependency>
<groupId>top.ysoft</groupId>
<artifactId>ysoft-plugin-generator</artifactId>
<groupId>top.wms</groupId>
<artifactId>wms-plugin-generator</artifactId>
</dependency>
<!-- Liquibase用于管理数据库版本跟踪、管理和应用数据库变化 -->
@@ -66,6 +66,13 @@
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<!-- Amazon S3Amazon Simple Storage Service亚马逊简单存储服务通用存储协议 S3兼容主流云厂商对象存储 -->
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-s3</artifactId>
<version>1.12.780</version>
</dependency>
</dependencies>
<build>