iotkit-parent/iot-components/iot-component-server/pom.xml

102 lines
2.9 KiB
XML
Raw Normal View History

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-08-08 17:17:31 +00:00
<version>0.4.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</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>
<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-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>
2022-03-23 10:58:29 +00:00
</dependencies>
</project>