From 8766cfc344d3635cd7e50a7c674cd5feb54d5a3d Mon Sep 17 00:00:00 2001
From: liriming <1343021927@qq.com>
Date: 星期一, 02 十二月 2024 09:30:35 +0800
Subject: [PATCH] 预警mq监听并发送

---
 shasteel-biz/pom.xml |   36 ++++++++++++++++++++++++++++++++++--
 1 files changed, 34 insertions(+), 2 deletions(-)

diff --git a/shasteel-biz/pom.xml b/shasteel-biz/pom.xml
index 73cd007..0166a9e 100644
--- a/shasteel-biz/pom.xml
+++ b/shasteel-biz/pom.xml
@@ -19,14 +19,19 @@
     <dependencies>
 
         <!-- 依赖服务 -->
+<!--        <dependency>-->
+<!--            <groupId>com.iailab</groupId>-->
+<!--            <artifactId>shasteel-api</artifactId>-->
+<!--            <version>${revision}</version>-->
+<!--        </dependency>-->
         <dependency>
             <groupId>com.iailab</groupId>
-            <artifactId>shasteel-api</artifactId>
+            <artifactId>iailab-module-infra-api</artifactId>
             <version>${revision}</version>
         </dependency>
         <dependency>
             <groupId>com.iailab</groupId>
-            <artifactId>iailab-module-infra-api</artifactId>
+            <artifactId>iailab-module-model-api</artifactId>
             <version>${revision}</version>
         </dependency>
 
@@ -131,6 +136,23 @@
             <artifactId>tencentcloud-sdk-java-sms</artifactId> <!-- 短信(腾讯云) -->
         </dependency>
 
+        <!-- 定时任务 -->
+        <dependency>
+            <groupId>org.quartz-scheduler</groupId>
+            <artifactId>quartz</artifactId>
+            <version>2.3.2</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>com.mchange</groupId>
+                    <artifactId>c3p0</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>com.zaxxer</groupId>
+                    <artifactId>HikariCP-java6</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+
 
         <dependency>
             <groupId>org.quartz-scheduler</groupId>
@@ -138,6 +160,16 @@
             <version>2.3.2</version>
         </dependency>
 
+        <dependency>
+            <groupId>com.iailab</groupId>
+            <artifactId>iailab-common-mq</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>com.iailab</groupId>
+            <artifactId>iailab-module-model-api</artifactId>
+        </dependency>
+
     </dependencies>
 
     <build>

--
Gitblit v1.9.3