iotkit-parent/iot-components/iot-http-biz-component/pom.xml

78 lines
2.6 KiB
XML
Raw Normal View History

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>
2023-05-06 06:46:44 +00:00
<version>${revision}</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>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
2022-03-03 09:24:41 +00:00
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-web-proxy</artifactId>
2022-03-03 09:24:41 +00:00
</dependency>
<dependency>
<groupId>cc.iotkit</groupId>
2022-06-30 07:08:45 +00:00
<artifactId>iot-component-base</artifactId>
</dependency>
2023-04-09 01:06:58 +00:00
<dependency>
<groupId>cc.iotkit</groupId>
<artifactId>iot-script-engine</artifactId>
</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>
2023-05-15 00:31:02 +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>
</project>