| 12345678910111213141516171819202122232425262728293031323334353637 |
- <?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>cn.iocoder.boot</groupId>
- <artifactId>yudao-module-iot-net-components</artifactId>
- <version>${revision}</version>
- </parent>
- <artifactId>yudao-module-iot-net-component-server</artifactId>
- <packaging>jar</packaging>
- <name>${project.artifactId}</name>
- <description>
- IoT 网络组件的独立运行服务,用于聚合和启动多个网络组件实例。
- </description>
- <dependencies>
- <!-- Web 相关 -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- </dependency>
- <!-- Net Component EMQX -->
- <dependency>
- <groupId>cn.iocoder.boot</groupId>
- <artifactId>yudao-module-iot-net-component-emqx</artifactId>
- <version>${revision}</version>
- </dependency>
- </dependencies>
- </project>
|