iot-server/bnhz-server/pom.xml

58 lines
1.7 KiB
XML
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<?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>daqi-back</artifactId>
<groupId>com.bnhz</groupId>
<version>3.8.5</version>
</parent>
<packaging>pom</packaging>
<artifactId>bnhz-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>
</modules>
<dependencies>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId> <!-- Use 'netty-all' for 4.0 or above -->
<version>4.1.56.Final</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.bnhz</groupId>
<artifactId>bnhz-common</artifactId>
<version>3.8.5</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
<dependency>
<groupId>com.bnhz</groupId>
<artifactId>bnhz-iot-service</artifactId>
</dependency>
</dependencies>
</project>