- 修改AudioService中terminalId为robotId,包括变量声明、参数传递和日志输出 - 更新BaseChannelSubscribeHandler中的注释和参数解析逻辑 - 修改CameraStreamTicketService中的方法参数和记录类定义 - 更新DeRobotConfig文档中的术语描述 - 替换DeviceListController和EdgeAgvController中的terminalId参数为robotId - 修改EdgeAgvServiceImpl中所有方法的参数引用 - 更新EdgeArmController中所有终端ID参数为机器人ID - 修改EdgeArmServiceImpl中所有gRPC客户端调用的参数 - 调整EdgeArmTeleopOpenVO中的字段定义顺序
59 lines
1.7 KiB
XML
59 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.9.2</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>
|
|
|
|
<!-- 设备服务,供工作流报警监听组件使用 -->
|
|
<dependency>
|
|
<groupId>com.cmvr</groupId>
|
|
<artifactId>cmvr-iot-device</artifactId>
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<groupId>org.openjdk.nashorn</groupId>
|
|
<artifactId>nashorn-core</artifactId>
|
|
<version>${nashorn.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.13.2</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|