- 在ActionEnum中新增巡检报警监听相关枚举值 - 集成InspectionAlertListenService和EdgeArmService依赖 - 实现巡检报警监听开始和停止功能 - 添加机械臂移动到指定坐标点功能 - 在工作流执行器中增加报警事件类型解析逻辑 - 实现基于终端ID的边缘端IP解析和报警过滤机制 - 新增巡检报警监听工作流组件服务类 - 创建巡检报警监听状态管理服务
57 lines
1.7 KiB
XML
57 lines
1.7 KiB
XML
<?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">
|
||
<modelVersion>4.0.0</modelVersion>
|
||
<parent>
|
||
<groupId>com.cmvr</groupId>
|
||
<artifactId>cmvr-iot</artifactId>
|
||
<version>3.8.9</version>
|
||
</parent>
|
||
|
||
<artifactId>cmvr-iot-test</artifactId>
|
||
|
||
<description>
|
||
测试管理模块
|
||
</description>
|
||
|
||
<dependencies>
|
||
|
||
<!-- 通用工具-->
|
||
<dependency>
|
||
<groupId>com.cmvr</groupId>
|
||
<artifactId>cmvr-iot-framework</artifactId>
|
||
</dependency>
|
||
|
||
<!-- 大模型服务-->
|
||
<dependency>
|
||
<groupId>com.cmvr</groupId>
|
||
<artifactId>cmvr-iot-llm</artifactId>
|
||
</dependency>
|
||
|
||
<!-- 边缘系统 gRPC服务-->
|
||
<dependency>
|
||
<groupId>com.cmvr</groupId>
|
||
<artifactId>cmvr-iot-grpc-client</artifactId>
|
||
</dependency>
|
||
|
||
<!-- 设备终端配置,用于工作流报警监听组件按终端ID解析边缘端IP -->
|
||
<dependency>
|
||
<groupId>com.cmvr</groupId>
|
||
<artifactId>cmvr-iot-device</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.graalvm.js</groupId>
|
||
<artifactId>js</artifactId>
|
||
<version>20.3.0</version> <!-- 最后一个支持 JDK 8 的版本 -->
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.graalvm.js</groupId>
|
||
<artifactId>js-scriptengine</artifactId>
|
||
<version>20.3.0</version>
|
||
</dependency>
|
||
|
||
</dependencies>
|
||
</project>
|