This repository has been archived on 2025-08-12. You can view files and clone it, but cannot push or open issues or pull requests.
Files

60 lines
1.8 KiB
XML
Raw Permalink 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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>xinda</artifactId>
<groupId>com.xinda</groupId>
<version>3.8.5</version>
</parent>
<packaging>pom</packaging>
<artifactId>xinda-server</artifactId>
<description>服务集成模块</description>
<modules>
<!--服务基础模块-->
<module>base-server</module>
<!--服务启动模块-->
<module>boot-strap</module>
<!--mqttBroker-->
<module>mqtt-broker</module>
<!--coap服务-->
<module>coap-server</module>
<!--服务核心tcp udp服务搭建模块-->
<module>iot-server-core</module>
<module>sip-server</module>
<module>http-server</module>
</modules>
<dependencies>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId> <!-- Use 'netty-all' for 4.0 or above -->
<version>4.1.74.Final</version>
<!-- <version>4.1.56.Final</version>-->
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.xinda</groupId>
<artifactId>xinda-common</artifactId>
<version>3.8.5</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
<dependency>
<groupId>com.xinda</groupId>
<artifactId>xinda-iot-service</artifactId>
</dependency>
</dependencies>
</project>