|
@@ -3,10 +3,12 @@
|
|
|
<parent>
|
|
|
<artifactId>iot-components</artifactId>
|
|
|
<groupId>cc.iotkit</groupId>
|
|
|
- <version>${revision}</version>
|
|
|
+ <version>0.4.5-SNAPSHOT</version>
|
|
|
</parent>
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
+ <groupId>cc.iotkit</groupId>
|
|
|
<artifactId>iot-mqtt-component</artifactId>
|
|
|
+ <version>0.4.5-SNAPSHOT</version>
|
|
|
<build>
|
|
|
<plugins>
|
|
|
<plugin>
|
|
@@ -34,73 +36,50 @@
|
|
|
<plugin>
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
<configuration>
|
|
|
- <source>11</source>
|
|
|
- <target>11</target>
|
|
|
+ <source>${java.version}</source>
|
|
|
+ <target>${java.version}</target>
|
|
|
<forceJavacCompilerUse>true</forceJavacCompilerUse>
|
|
|
<useIncrementalCompilation>false</useIncrementalCompilation>
|
|
|
+ <encoding>utf8</encoding>
|
|
|
</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-mqtt</artifactId>
|
|
|
- <version>4.2.2</version>
|
|
|
- <scope>provided</scope>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>io.netty</groupId>
|
|
|
- <artifactId>netty-codec-mqtt</artifactId>
|
|
|
- <version>4.1.72.Final</version>
|
|
|
- <scope>provided</scope>
|
|
|
- </dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
<artifactId>lombok</artifactId>
|
|
|
- <version>1.18.24</version>
|
|
|
+ <version>1.18.26</version>
|
|
|
<scope>compile</scope>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
- <version>1.7.32</version>
|
|
|
+ <version>1.7.36</version>
|
|
|
<scope>compile</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-common-core</artifactId>
|
|
|
- <version>0.4.3-SNAPSHOT</version>
|
|
|
+ <version>0.4.5-SNAPSHOT</version>
|
|
|
<scope>compile</scope>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>cc.iotkit</groupId>
|
|
|
<artifactId>iot-component-base</artifactId>
|
|
|
- <version>0.4.3-SNAPSHOT</version>
|
|
|
+ <version>0.4.5-SNAPSHOT</version>
|
|
|
<scope>compile</scope>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>cc.iotkit</groupId>
|
|
|
<artifactId>iot-data-service</artifactId>
|
|
|
- <version>0.4.3-SNAPSHOT</version>
|
|
|
+ <version>0.4.5-SNAPSHOT</version>
|
|
|
<scope>compile</scope>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>cc.iotkit</groupId>
|
|
|
<artifactId>iot-script-engine</artifactId>
|
|
|
- <version>0.4.3-SNAPSHOT</version>
|
|
|
+ <version>0.4.5-SNAPSHOT</version>
|
|
|
<scope>compile</scope>
|
|
|
</dependency>
|
|
|
</dependencies>
|