86 lines
3.0 KiB
XML
86 lines
3.0 KiB
XML
<?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>
|
|
<version>0.4.2-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>iot-ctwing-component</artifactId>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.vertx</groupId>
|
|
<artifactId>vertx-web-proxy</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.ctg.ag</groupId>
|
|
<artifactId>ctg-ag-sdk-core</artifactId>
|
|
<version>2.5.0-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.ctg.ag</groupId>
|
|
<artifactId>ag-sdk-biz-84356.tar.gz</artifactId>
|
|
<version>20220603.182201-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>cc.iotkit</groupId>
|
|
<artifactId>iot-component-base</artifactId>
|
|
</dependency>
|
|
|
|
</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-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>
|
|
<include>com.ctg.ag:ctg-ag-sdk-core</include>
|
|
<include>com.ctg.ag:ag-sdk-biz-84356.tar.gz</include>
|
|
<include>org.apache.httpcomponents:httpasyncclient</include>
|
|
</includes>
|
|
</artifactSet>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<source>11</source>
|
|
<target>11</target>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project> |