iotkit-parent/protocol-gateway/emqx-component/pom.xml

48 lines
1.3 KiB
XML
Raw Normal View History

2022-03-09 10:45:37 +00:00
<?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">
<parent>
2022-03-10 11:06:35 +00:00
<artifactId>protocol-gateway</artifactId>
2022-03-09 10:45:37 +00:00
<groupId>cc.iotkit</groupId>
<version>0.0.1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
2022-03-28 00:20:00 +00:00
<artifactId>emqx-component</artifactId>
2022-03-09 10:45:37 +00:00
<dependencies>
2022-03-19 14:28:28 +00:00
<dependency>
2022-03-28 00:20:00 +00:00
<groupId>io.vertx</groupId>
<artifactId>vertx-core</artifactId>
2022-03-19 14:28:28 +00:00
</dependency>
2022-03-09 10:45:37 +00:00
<dependency>
2022-03-28 00:20:00 +00:00
<groupId>io.vertx</groupId>
<artifactId>vertx-web-proxy</artifactId>
2022-03-09 10:45:37 +00:00
</dependency>
<dependency>
2022-03-28 00:20:00 +00:00
<groupId>io.vertx</groupId>
<artifactId>vertx-mqtt</artifactId>
2022-03-09 10:45:37 +00:00
</dependency>
<dependency>
2022-03-28 00:20:00 +00:00
<groupId>cc.iotkit</groupId>
<artifactId>model</artifactId>
2022-03-09 10:45:37 +00:00
</dependency>
<dependency>
2022-03-10 11:06:35 +00:00
<groupId>cc.iotkit</groupId>
<artifactId>common</artifactId>
2022-03-09 10:45:37 +00:00
</dependency>
2022-03-28 00:20:00 +00:00
<dependency>
<groupId>cc.iotkit</groupId>
<artifactId>component</artifactId>
</dependency>
2022-03-09 10:45:37 +00:00
</dependencies>
</project>