2022-03-23 10:58:29 +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-23 10:58:29 +00:00
|
|
|
<groupId>cc.iotkit</groupId>
|
2022-07-04 03:27:21 +00:00
|
|
|
<version>0.3.2-SNAPSHOT</version>
|
2022-03-23 10:58:29 +00:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
2022-06-30 07:08:45 +00:00
|
|
|
<artifactId>iot-component-server</artifactId>
|
2022-03-23 10:58:29 +00:00
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-data-elasticsearch</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-context</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2022-03-28 00:20:00 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.data</groupId>
|
|
|
|
<artifactId>spring-data-redis</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>redis.clients</groupId>
|
|
|
|
<artifactId>jedis</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2022-03-23 10:58:29 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2022-04-23 20:59:23 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.vertx</groupId>
|
|
|
|
<artifactId>vertx-web-client</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2022-03-29 11:08:07 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2022-05-02 05:05:29 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.luaj</groupId>
|
|
|
|
<artifactId>luaj-jse</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2022-03-23 10:58:29 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>cc.iotkit</groupId>
|
2022-06-30 07:08:45 +00:00
|
|
|
<artifactId>iot-common</artifactId>
|
2022-03-23 10:58:29 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>cc.iotkit</groupId>
|
2022-06-30 07:08:45 +00:00
|
|
|
<artifactId>iot-component-converter</artifactId>
|
2022-03-23 10:58:29 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>cc.iotkit</groupId>
|
2022-06-30 07:08:45 +00:00
|
|
|
<artifactId>iot-model</artifactId>
|
2022-03-23 10:58:29 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>cc.iotkit</groupId>
|
2022-06-30 07:08:45 +00:00
|
|
|
<artifactId>iot-dao</artifactId>
|
2022-03-23 10:58:29 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>cc.iotkit</groupId>
|
2022-06-30 07:08:45 +00:00
|
|
|
<artifactId>iot-component-base</artifactId>
|
2022-03-23 10:58:29 +00:00
|
|
|
</dependency>
|
|
|
|
|
2022-06-13 11:12:56 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>cc.iotkit</groupId>
|
2022-06-30 07:08:45 +00:00
|
|
|
<artifactId>iot-message-bus</artifactId>
|
2022-06-13 11:12:56 +00:00
|
|
|
</dependency>
|
|
|
|
|
2022-07-04 03:27:21 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>cc.iotkit</groupId>
|
|
|
|
<artifactId>iot-device-dao</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2022-03-23 10:58:29 +00:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|