48 lines
1.3 KiB
XML
48 lines
1.3 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">
|
||
|
<parent>
|
||
|
<artifactId>protocol-gateway</artifactId>
|
||
|
<groupId>cc.iotkit</groupId>
|
||
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
</parent>
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
||
|
<artifactId>emqx-component</artifactId>
|
||
|
|
||
|
<dependencies>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>io.vertx</groupId>
|
||
|
<artifactId>vertx-core</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>io.vertx</groupId>
|
||
|
<artifactId>vertx-web-proxy</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>io.vertx</groupId>
|
||
|
<artifactId>vertx-mqtt</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>cc.iotkit</groupId>
|
||
|
<artifactId>model</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>cc.iotkit</groupId>
|
||
|
<artifactId>common</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>cc.iotkit</groupId>
|
||
|
<artifactId>component</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
</dependencies>
|
||
|
|
||
|
</project>
|