2025-08-21 14:39:54 +08:00
|
|
|
|
<?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>
|
2026-07-28 16:33:32 +08:00
|
|
|
|
<version>3.9.2</version>
|
2025-08-21 14:39:54 +08:00
|
|
|
|
</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>
|
|
|
|
|
|
|
2026-07-23 13:52:37 +08:00
|
|
|
|
<!-- 设备终端配置,用于工作流报警监听组件按终端ID解析边缘端IP -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.cmvr</groupId>
|
|
|
|
|
|
<artifactId>cmvr-iot-device</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
2026-07-28 16:33:32 +08:00
|
|
|
|
|
2026-03-17 14:08:08 +08:00
|
|
|
|
<dependency>
|
2026-07-28 16:33:32 +08:00
|
|
|
|
<groupId>org.openjdk.nashorn</groupId>
|
|
|
|
|
|
<artifactId>nashorn-core</artifactId>
|
|
|
|
|
|
<version>${nashorn.version}</version>
|
2026-03-17 14:08:08 +08:00
|
|
|
|
</dependency>
|
2026-07-30 08:51:19 +08:00
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
|
|
<version>4.13.2</version>
|
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
|
</dependency>
|
2025-08-21 14:39:54 +08:00
|
|
|
|
</dependencies>
|
2026-07-23 13:52:37 +08:00
|
|
|
|
</project>
|