1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- <?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>${revision}</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>${java.version}</source>
- <target>${java.version}</target>
- <forceJavacCompilerUse>true</forceJavacCompilerUse>
- <useIncrementalCompilation>false</useIncrementalCompilation>
- <encoding>utf8</encoding>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-common-model</artifactId>
- <version>0.4.5-SNAPSHOT</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-common-core</artifactId>
- <version>0.4.5-SNAPSHOT</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-component-base</artifactId>
- <version>0.4.5-SNAPSHOT</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-data-service</artifactId>
- <version>0.4.5-SNAPSHOT</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>cc.iotkit</groupId>
- <artifactId>iot-script-engine</artifactId>
- <version>0.4.5-SNAPSHOT</version>
- <scope>compile</scope>
- </dependency>
- </dependencies>
- </project>
|