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

83 lines
2.6 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>
2022-05-19 03:38:15 +00:00
<version>0.2.0-SNAPSHOT</version>
2022-03-09 10:45:37 +00:00
</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>
2022-03-29 11:08:07 +00:00
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.4</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
<configuration>
<artifactSet>
<includes>
<include>io.vertx:vertx-core</include>
<include>io.vertx:vertx-web-proxy</include>
<include>io.vertx:vertx-mqtt</include>
</includes>
</artifactSet>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
</plugins>
</build>
2022-03-09 10:45:37 +00:00
</project>