iotkit-parent/iot-components/iot-mqtt-component/pom.xml

106 lines
3.3 KiB
XML
Raw Normal View History

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>
<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>
<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>
2022-03-28 11:02:35 +00:00
</configuration>
2022-03-06 15:35:12 +00:00
</plugin>
</plugins>
</build>
</project>