From 7dac4deb10374dc33ca562eb1d7b7c9cc67dc04c Mon Sep 17 00:00:00 2001
From: wenwj <‘1106994300@qq.com>
Date: 星期二, 08 四月 2025 14:10:11 +0800
Subject: [PATCH] 零件计划管理基础代码和部分代码调整
---
aps-modules/aps-core/pom.xml | 50 ++++++++++++++++++++++++++++++--------------------
1 files changed, 30 insertions(+), 20 deletions(-)
diff --git a/aps-modules/aps-core/pom.xml b/aps-modules/aps-core/pom.xml
index 4139244..92e3490 100644
--- a/aps-modules/aps-core/pom.xml
+++ b/aps-modules/aps-core/pom.xml
@@ -16,50 +16,60 @@
</description>
<dependencies>
-
- <!-- SpringCloud Alibaba Nacos -->
+
+ <!-- SpringCloud Alibaba Nacos -->
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
</dependency>
-
+
<!-- SpringCloud Alibaba Nacos Config -->
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
</dependency>
-
+
<!-- SpringCloud Alibaba Sentinel -->
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
</dependency>
-
+
<!-- SpringBoot Actuator -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
-
- <!-- SpringBoot Web -->
+
+ <!-- Mysql Connector -->
<dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
+ <groupId>com.mysql</groupId>
+ <artifactId>mysql-connector-j</artifactId>
</dependency>
-
- <!-- Minio -->
- <dependency>
- <groupId>io.minio</groupId>
- <artifactId>minio</artifactId>
- <version>${minio.version}</version>
- </dependency>
-
- <!-- RuoYi Api System -->
+
+ <!-- RuoYi Common DataSource -->
<dependency>
<groupId>com.aps</groupId>
- <artifactId>aps-api-system</artifactId>
+ <artifactId>aps-common-datasource</artifactId>
</dependency>
-
+
+ <!-- RuoYi Common DataScope -->
+ <dependency>
+ <groupId>com.aps</groupId>
+ <artifactId>aps-common-datascope</artifactId>
+ </dependency>
+
+ <!-- RuoYi Common Log -->
+ <dependency>
+ <groupId>com.aps</groupId>
+ <artifactId>aps-common-log</artifactId>
+ </dependency>
+
+ <!-- RuoYi Common Swagger -->
+ <dependency>
+ <groupId>com.aps</groupId>
+ <artifactId>aps-common-swagger</artifactId>
+ </dependency>
</dependencies>
<build>
--
Gitblit v1.9.3