2022-04-23 20:59:23 +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-04-23 20:59:23 +00:00
|
|
|
<groupId>cc.iotkit</groupId>
|
2023-06-18 10:19:52 +00:00
|
|
|
<version>${revision}</version>
|
2022-04-23 20:59:23 +00:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2022-06-30 07:08:45 +00:00
|
|
|
<artifactId>iot-http-biz-component</artifactId>
|
2022-04-23 20:59:23 +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-web-proxy</include>
|
|
|
|
<include>io.vertx:vertx-web</include>
|
|
|
|
<include>io.vertx:vertx-bridge-common</include>
|
|
|
|
<include>io.vertx:vertx-http-proxy</include>
|
|
|
|
<include>io.vertx:vertx-core</include>
|
|
|
|
<include>io.netty:netty-codec-http2</include>
|
|
|
|
</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>
|
|
|
|
<encoding>utf8</encoding>
|
2022-04-23 20:59:23 +00:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
2023-06-06 07:11:30 +00:00
|
|
|
<version>1.18.26</version>
|
2022-04-23 20:59:23 +00:00
|
|
|
<scope>compile</scope>
|
|
|
|
</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>
|
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-04-23 20:59:23 +00:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|