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>
|
2023-05-06 06:46:44 +00:00
|
|
|
<version>${revision}</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</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>
|
2023-05-06 06:46:44 +00:00
|
|
|
<artifactId>iot-common-core</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-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-08-08 17:17:31 +00:00
|
|
|
<artifactId>iot-message-core</artifactId>
|
2022-06-13 11:12:56 +00:00
|
|
|
</dependency>
|
|
|
|
|
2022-07-04 03:27:21 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>cc.iotkit</groupId>
|
2022-07-14 11:45:27 +00:00
|
|
|
<artifactId>iot-data-service</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>cc.iotkit</groupId>
|
|
|
|
<artifactId>iot-temporal-service</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>cc.iotkit</groupId>
|
|
|
|
<artifactId>iot-data-cache</artifactId>
|
2022-07-04 03:27:21 +00:00
|
|
|
</dependency>
|
2023-04-09 01:06:58 +00:00
|
|
|
|
2023-02-27 05:25:38 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>cc.iotkit</groupId>
|
2023-04-09 01:06:58 +00:00
|
|
|
<artifactId>iot-script-engine</artifactId>
|
2023-02-27 05:25:38 +00:00
|
|
|
</dependency>
|
2022-07-04 03:27:21 +00:00
|
|
|
|
2022-03-23 10:58:29 +00:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|