70 lines
2.1 KiB
XML
70 lines
2.1 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-edge</artifactId>
|
|
<version>3.9.2</version>
|
|
</parent>
|
|
|
|
<artifactId>cmvr-iot-grpc-client</artifactId>
|
|
<description>cmvr-iot gRPC客户端</description>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.cmvr</groupId>
|
|
<artifactId>cmvr-iot-quic-contract</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.cmvr</groupId>
|
|
<artifactId>cmvr-iot-grpc-lib</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.grpc</groupId>
|
|
<artifactId>grpc-netty-shaded</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.protobuf</groupId>
|
|
<artifactId>protobuf-java</artifactId>
|
|
<version>${protobuf.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.cmvr</groupId>
|
|
<artifactId>cmvr-iot-common</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.cmvr</groupId>
|
|
<artifactId>cmvr-iot-system</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.cmvr</groupId>
|
|
<artifactId>cmvr-iot-device</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.cmvr</groupId>
|
|
<artifactId>cmvr-iot-framework</artifactId>
|
|
</dependency>
|
|
<!-- JavaCV核心依赖 -->
|
|
<dependency>
|
|
<groupId>org.bytedeco</groupId>
|
|
<artifactId>javacv-platform</artifactId>
|
|
<version>1.5.9</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>dev.onvoid.webrtc</groupId>
|
|
<artifactId>webrtc-java</artifactId>
|
|
<version>0.14.0</version>
|
|
</dependency>
|
|
|
|
|
|
</dependencies>
|
|
</project>
|