2022-03-29 11:08:07 +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/maven-v4_0_0.xsd">
|
|
|
|
<parent>
|
2022-06-30 07:08:45 +00:00
|
|
|
<artifactId>iot-components</artifactId>
|
2022-03-29 11:08:07 +00:00
|
|
|
<groupId>cc.iotkit</groupId>
|
2023-06-06 07:11:30 +00:00
|
|
|
<version>0.4.5-SNAPSHOT</version>
|
2022-03-29 11:08:07 +00:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2023-06-06 07:11:30 +00:00
|
|
|
<groupId>cc.iotkit</groupId>
|
2022-06-30 07:08:45 +00:00
|
|
|
<artifactId>iot-emqx-component</artifactId>
|
2023-06-06 07:11:30 +00:00
|
|
|
<version>0.4.5-SNAPSHOT</version>
|
2022-03-29 11:08:07 +00:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<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>
|
2022-05-20 14:42:39 +00:00
|
|
|
<include>io.vertx:vertx-web</include>
|
|
|
|
<include>io.vertx:vertx-http-proxy</include>
|
|
|
|
<include>org.luaj:luaj-jse</include>
|
|
|
|
<include>io.netty:netty-common</include>
|
|
|
|
<include>io.netty:netty-transport</include>
|
|
|
|
<include>io.netty:netty-handler</include>
|
|
|
|
<include>io.netty:netty-resolver</include>
|
|
|
|
<include>io.netty:netty-buffer</include>
|
|
|
|
<include>io.netty:netty-handler</include>
|
|
|
|
<include>io.netty:netty-proxy</include>
|
|
|
|
<include>io.netty:netty-codec</include>
|
|
|
|
<include>io.netty:netty-codec-mqtt</include>
|
|
|
|
<include>io.netty:netty-codec-dns</include>
|
|
|
|
<include>io.netty:netty-resolver-dns</include>
|
|
|
|
<include>io.netty:netty-tcnative-boringssl-static</include>
|
2022-03-29 11:08:07 +00:00
|
|
|
</includes>
|
|
|
|
</artifactSet>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
2023-06-06 07:11:30 +00:00
|
|
|
<source>${java.version}</source>
|
|
|
|
<target>${java.version}</target>
|
2022-07-27 05:26:26 +00:00
|
|
|
<forceJavacCompilerUse>true</forceJavacCompilerUse>
|
|
|
|
<useIncrementalCompilation>false</useIncrementalCompilation>
|
2023-06-06 07:11:30 +00:00
|
|
|
<encoding>utf8</encoding>
|
2022-03-29 11:08:07 +00:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>cc.iotkit</groupId>
|
2023-06-06 07:11:30 +00:00
|
|
|
<artifactId>iot-common-model</artifactId>
|
|
|
|
<version>0.4.5-SNAPSHOT</version>
|
2022-03-29 11:08:07 +00:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2022-05-20 14:42:39 +00:00
|
|
|
<dependency>
|
2022-06-30 07:08:45 +00:00
|
|
|
<groupId>cc.iotkit</groupId>
|
2023-05-06 06:46:44 +00:00
|
|
|
<artifactId>iot-common-core</artifactId>
|
2023-06-06 07:11:30 +00:00
|
|
|
<version>0.4.5-SNAPSHOT</version>
|
2022-06-30 07:08:45 +00:00
|
|
|
<scope>compile</scope>
|
2022-05-20 14:42:39 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>cc.iotkit</groupId>
|
2022-06-30 07:08:45 +00:00
|
|
|
<artifactId>iot-component-base</artifactId>
|
2023-06-06 07:11:30 +00:00
|
|
|
<version>0.4.5-SNAPSHOT</version>
|
2022-05-20 14:42:39 +00:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2022-07-27 05:26:26 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>cc.iotkit</groupId>
|
|
|
|
<artifactId>iot-data-service</artifactId>
|
2023-06-06 07:11:30 +00:00
|
|
|
<version>0.4.5-SNAPSHOT</version>
|
2023-04-09 01:06:58 +00:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>cc.iotkit</groupId>
|
|
|
|
<artifactId>iot-script-engine</artifactId>
|
2023-06-06 07:11:30 +00:00
|
|
|
<version>0.4.5-SNAPSHOT</version>
|
2022-07-27 05:26:26 +00:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2022-03-29 11:08:07 +00:00
|
|
|
</dependencies>
|
|
|
|
</project>
|