82 lines
2.7 KiB
XML
82 lines
2.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-quic</artifactId>
|
||
<description>集成在cmvr-iot-admin进程中的Netty 4.2 QUIC边缘接入组件</description>
|
||
|
||
<properties>
|
||
<netty.quic.version>4.2.16.Final</netty.quic.version>
|
||
</properties>
|
||
|
||
<!-- QUIC要求Netty 4.2;根工程统一版本,避免主应用运行时混用Netty 4.1/4.2。 -->
|
||
<dependencyManagement>
|
||
<dependencies>
|
||
<dependency>
|
||
<groupId>io.netty</groupId>
|
||
<artifactId>netty-bom</artifactId>
|
||
<version>${netty.quic.version}</version>
|
||
<type>pom</type>
|
||
<scope>import</scope>
|
||
</dependency>
|
||
</dependencies>
|
||
</dependencyManagement>
|
||
|
||
<dependencies>
|
||
<dependency>
|
||
<groupId>com.cmvr</groupId>
|
||
<artifactId>cmvr-iot-quic-contract</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>io.netty</groupId>
|
||
<artifactId>netty-codec-classes-quic</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>io.netty</groupId>
|
||
<artifactId>netty-codec-native-quic</artifactId>
|
||
<version>${netty.quic.version}</version>
|
||
<classifier>${os.detected.classifier}</classifier>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>io.netty</groupId>
|
||
<artifactId>netty-handler</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>io.netty</groupId>
|
||
<artifactId>netty-transport</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.slf4j</groupId>
|
||
<artifactId>slf4j-api</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-autoconfigure</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>junit</groupId>
|
||
<artifactId>junit</artifactId>
|
||
<version>4.13.2</version>
|
||
<scope>test</scope>
|
||
</dependency>
|
||
</dependencies>
|
||
|
||
<build>
|
||
<extensions>
|
||
<extension>
|
||
<groupId>kr.motd.maven</groupId>
|
||
<artifactId>os-maven-plugin</artifactId>
|
||
<version>1.7.1</version>
|
||
</extension>
|
||
</extensions>
|
||
</build>
|
||
</project>
|