2022-03-03 09:24:41 +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-03 09:24:41 +00:00
|
|
|
<groupId>cc.iotkit</groupId>
|
2022-08-08 17:17:31 +00:00
|
|
|
<version>0.4.2-SNAPSHOT</version>
|
2022-03-03 09:24:41 +00:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
2022-06-30 07:08:45 +00:00
|
|
|
<artifactId>iot-http-biz-component</artifactId>
|
2022-03-03 09:24:41 +00:00
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
<dependency>
|
2022-04-22 10:43:42 +00:00
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
2022-03-03 09:24:41 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2022-04-22 10:43:42 +00:00
|
|
|
<groupId>io.vertx</groupId>
|
|
|
|
<artifactId>vertx-web-proxy</artifactId>
|
2022-03-03 09:24:41 +00:00
|
|
|
</dependency>
|
|
|
|
|
2022-04-22 10:43:42 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>cc.iotkit</groupId>
|
2022-06-30 07:08:45 +00:00
|
|
|
<artifactId>iot-component-base</artifactId>
|
2022-04-22 10:43:42 +00:00
|
|
|
</dependency>
|
|
|
|
|
2022-03-03 09:24:41 +00:00
|
|
|
</dependencies>
|
|
|
|
|
2022-04-23 20:59:23 +00:00
|
|
|
<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-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>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
2022-07-19 13:29:43 +00:00
|
|
|
<source>11</source>
|
|
|
|
<target>11</target>
|
2022-04-23 20:59:23 +00:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2022-03-03 09:24:41 +00:00
|
|
|
</project>
|