2022-03-03 09:24:41 +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>
|
2023-05-15 00:31:02 +00:00
|
|
|
<artifactId>iot-module</artifactId>
|
2022-03-03 09:24:41 +00:00
|
|
|
<groupId>cc.iotkit</groupId>
|
2023-05-06 06:46:44 +00:00
|
|
|
<version>${revision}</version>
|
2022-03-03 09:24:41 +00:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
2022-06-30 07:08:45 +00:00
|
|
|
<artifactId>iot-rule-engine</artifactId>
|
2023-05-06 06:46:44 +00:00
|
|
|
<description>
|
|
|
|
规则引擎模块,包含场景引擎、数据流转等
|
|
|
|
</description>
|
|
|
|
|
2022-03-03 09:24:41 +00:00
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-context-support</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.quartz-scheduler</groupId>
|
|
|
|
<artifactId>quartz</artifactId>
|
2023-06-01 12:25:49 +00:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>com.zaxxer</groupId>
|
|
|
|
<artifactId>HikariCP-java7</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2022-03-03 09:24:41 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-tx</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-integration</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.integration</groupId>
|
|
|
|
<artifactId>spring-integration-mqtt</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2022-04-11 00:58:53 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
|
|
<artifactId>okhttp</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2022-03-03 09:24:41 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2023-04-09 01:06:58 +00:00
|
|
|
<!--mqtt-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.vertx</groupId>
|
|
|
|
<artifactId>vertx-mqtt</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!--kafka-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.vertx</groupId>
|
|
|
|
<artifactId>vertx-kafka-client</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2022-03-03 09:24:41 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>cc.iotkit</groupId>
|
2023-05-17 08:24:21 +00:00
|
|
|
<artifactId>iot-common-model</artifactId>
|
2022-03-03 09:24:41 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>cc.iotkit</groupId>
|
2023-05-06 06:46:44 +00:00
|
|
|
<artifactId>iot-common-core</artifactId>
|
2022-03-03 09:24:41 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>cc.iotkit</groupId>
|
2022-06-30 07:08:45 +00:00
|
|
|
<artifactId>iot-component-server</artifactId>
|
2022-03-03 09:24:41 +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-11-12 05:53:57 +00:00
|
|
|
<dependency>
|
2023-04-09 01:06:58 +00:00
|
|
|
<groupId>cc.iotkit</groupId>
|
|
|
|
<artifactId>iot-script-engine</artifactId>
|
2022-11-12 05:53:57 +00:00
|
|
|
</dependency>
|
|
|
|
|
2022-03-03 09:24:41 +00:00
|
|
|
</dependencies>
|
|
|
|
|
2023-05-15 00:31:02 +00:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<source>${java.version}</source>
|
|
|
|
<target>${java.version}</target>
|
2023-06-06 07:11:30 +00:00
|
|
|
<encoding>utf8</encoding>
|
2023-05-15 00:31:02 +00:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2023-06-06 07:11:30 +00:00
|
|
|
|
|
|
|
</project>
|