2022-03-06 15:35:12 +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-06-30 07:08:45 +00:00
|
|
|
<artifactId>iot-components</artifactId>
|
2022-03-06 15:35:12 +00:00
|
|
|
<groupId>cc.iotkit</groupId>
|
2023-05-06 06:46:44 +00:00
|
|
|
<version>${revision}</version>
|
2022-03-06 15:35:12 +00:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
2022-06-30 07:08:45 +00:00
|
|
|
<artifactId>iot-mqtt-component</artifactId>
|
2022-03-06 15:35:12 +00:00
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
<dependency>
|
2022-03-20 22:34:39 +00:00
|
|
|
<groupId>io.vertx</groupId>
|
|
|
|
<artifactId>vertx-core</artifactId>
|
2022-03-06 15:35:12 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2022-03-20 22:34:39 +00:00
|
|
|
<groupId>io.vertx</groupId>
|
|
|
|
<artifactId>vertx-mqtt</artifactId>
|
2022-03-06 15:35:12 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2022-04-11 00:58:53 +00:00
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
<artifactId>netty-codec-mqtt</artifactId>
|
2022-03-06 15:35:12 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2022-03-20 22:34:39 +00:00
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
2022-03-06 15:35:12 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2022-03-20 22:34:39 +00:00
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
2022-03-06 15:35:12 +00:00
|
|
|
</dependency>
|
|
|
|
|
2022-05-02 05:05:29 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.luaj</groupId>
|
|
|
|
<artifactId>luaj-jse</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2022-03-06 15:35:12 +00:00
|
|
|
<dependency>
|
2022-03-20 22:34:39 +00:00
|
|
|
<groupId>cc.iotkit</groupId>
|
2023-05-06 06:46:44 +00:00
|
|
|
<artifactId>iot-common-core</artifactId>
|
2022-03-20 22:34:39 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>cc.iotkit</groupId>
|
2022-06-30 07:08:45 +00:00
|
|
|
<artifactId>iot-component-base</artifactId>
|
2022-03-06 15:35:12 +00:00
|
|
|
</dependency>
|
|
|
|
|
2022-07-20 12:55:08 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>cc.iotkit</groupId>
|
|
|
|
<artifactId>iot-data-service</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2023-04-09 01:06:58 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>cc.iotkit</groupId>
|
|
|
|
<artifactId>iot-script-engine</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2022-03-06 15:35:12 +00:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2022-03-28 11:02:35 +00:00
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<version>3.2.4</version>
|
2022-03-06 15:35:12 +00:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
2022-03-28 11:02:35 +00:00
|
|
|
<goal>shade</goal>
|
2022-03-06 15:35:12 +00:00
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2022-03-28 11:02:35 +00:00
|
|
|
<configuration>
|
|
|
|
<artifactSet>
|
|
|
|
<includes>
|
|
|
|
<include>io.vertx:vertx-core</include>
|
|
|
|
<include>io.vertx:vertx-mqtt</include>
|
2022-04-11 00:58:53 +00:00
|
|
|
<include>io.netty:netty-codec-mqtt</include>
|
2022-05-02 05:05:29 +00:00
|
|
|
<include>org.luaj:luaj-jse</include>
|
2022-03-28 11:02:35 +00:00
|
|
|
</includes>
|
|
|
|
</artifactSet>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
2023-05-15 00:31:02 +00:00
|
|
|
<source>${java.version}</source>
|
|
|
|
<target>${java.version}</target>
|
2022-07-20 12:55:08 +00:00
|
|
|
<forceJavacCompilerUse>true</forceJavacCompilerUse>
|
|
|
|
<useIncrementalCompilation>false</useIncrementalCompilation>
|
2023-06-06 07:11:30 +00:00
|
|
|
<encoding>utf8</encoding>
|
2022-03-28 11:02:35 +00:00
|
|
|
</configuration>
|
2022-03-06 15:35:12 +00:00
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2023-06-06 07:11:30 +00:00
|
|
|
</project>
|