2022-12-13 15:09: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>
|
|
|
|
<artifactId>iot-components</artifactId>
|
|
|
|
<groupId>cc.iotkit</groupId>
|
2023-05-06 06:46:44 +00:00
|
|
|
<version>${revision}</version>
|
2022-12-13 15:09:37 +00:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>iot-component-tcp</artifactId>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.projectreactor</groupId>
|
|
|
|
<artifactId>reactor-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.vertx</groupId>
|
|
|
|
<artifactId>vertx-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>cc.iotkit</groupId>
|
2023-05-06 06:46:44 +00:00
|
|
|
<artifactId>iot-common-core</artifactId>
|
2022-12-13 15:09:37 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>cc.iotkit</groupId>
|
|
|
|
<artifactId>iot-component-base</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<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-12-13 15:09:37 +00:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<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>
|
|
|
|
</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-12-13 15:09:37 +00:00
|
|
|
<forceJavacCompilerUse>true</forceJavacCompilerUse>
|
|
|
|
<useIncrementalCompilation>false</useIncrementalCompilation>
|
2023-06-06 07:11:30 +00:00
|
|
|
<encoding>utf8</encoding>
|
2022-12-13 15:09:37 +00:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2023-06-06 07:11:30 +00:00
|
|
|
</project>
|