123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- <?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>
- <artifactId>iot-components</artifactId>
- <groupId>cc.iotkit</groupId>
- <version>0.4.2-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>iot-emqx-component</artifactId>
- <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-core</include>
- <include>io.vertx:vertx-web-proxy</include>
- <include>io.vertx:vertx-mqtt</include>
- <include>io.vertx:vertx-web</include>
- <include>io.vertx:vertx-http-proxy</include>
- <include>org.luaj:luaj-jse</include>
- <include>io.netty:netty-common</include>
- <include>io.netty:netty-transport</include>
- <include>io.netty:netty-handler</include>
- <include>io.netty:netty-resolver</include>
- <include>io.netty:netty-buffer</include>
- <include>io.netty:netty-handler</include>
- <include>io.netty:netty-proxy</include>
- <include>io.netty:netty-codec</include>
- <include>io.netty:netty-codec-mqtt</include>
- <include>io.netty:netty-codec-dns</include>
- <include>io.netty:netty-resolver-dns</include>
- <include>io.netty:netty-tcnative-boringssl-static</include>
- </includes>
- </artifactSet>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>11</source>
- <target>11</target>
- <forceJavacCompilerUse>true</forceJavacCompilerUse>
- <useIncrementalCompilation>false</useIncrementalCompilation>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>io.vertx</groupId>
- <artifactId>vertx-core</artifactId>
- <version>4.2.2</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>io.vertx</groupId>
- <artifactId>vertx-web-proxy</artifactId>
- <version>4.2.2</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>io.vertx</groupId>
- <artifactId>vertx-mqtt</artifactId>
- <version>4.2.2</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.luaj</groupId>
- <artifactId>luaj-jse</artifactId>
- <version>3.0.1</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-model</artifactId>
- <version>0.4.2-SNAPSHOT</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-common</artifactId>
- <version>0.4.2-SNAPSHOT</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-component-base</artifactId>
- <version>0.4.2-SNAPSHOT</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-data-service</artifactId>
- <version>0.4.2-SNAPSHOT</version>
- <scope>compile</scope>
- </dependency>
- </dependencies>
- </project>
|