CMVR-IOT/cmvr-iot-test/pom.xml

52 lines
1.5 KiB
XML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?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>
<!-- 设备终端配置用于工作流报警监听组件按终端ID解析边缘端IP -->
<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>
</dependencies>
</project>