133 lines
3.9 KiB
XML
133 lines
3.9 KiB
XML
<?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>
|
|
<artifactId>iot-module</artifactId>
|
|
<groupId>cc.iotkit</groupId>
|
|
<version>0.5.3</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>iot-rule-engine</artifactId>
|
|
<description>
|
|
规则引擎模块,包含场景引擎、数据流转等
|
|
</description>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>cc.iotkit</groupId>
|
|
<artifactId>iot-data-model</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>cc.iotkit</groupId>
|
|
<artifactId>iot-common-core</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>cc.iotkit</groupId>
|
|
<artifactId>iot-data-service</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>cc.iotkit</groupId>
|
|
<artifactId>iot-temporal-service</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>cc.iotkit</groupId>
|
|
<artifactId>iot-message-core</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>cc.iotkit</groupId>
|
|
<artifactId>iot-script-engine</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>cc.iotkit</groupId>
|
|
<artifactId>iot-message-notify</artifactId>
|
|
</dependency>
|
|
|
|
<!--====================第三方库===================-->
|
|
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-context-support</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.quartz-scheduler</groupId>
|
|
<artifactId>quartz</artifactId>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>com.zaxxer</groupId>
|
|
<artifactId>HikariCP-java7</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</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>
|
|
|
|
<dependency>
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
<artifactId>okhttp</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
</dependency>
|
|
|
|
<!--mqtt-->
|
|
<dependency>
|
|
<groupId>io.vertx</groupId>
|
|
<artifactId>vertx-mqtt</artifactId>
|
|
</dependency>
|
|
|
|
<!--kafka-->
|
|
<dependency>
|
|
<groupId>io.vertx</groupId>
|
|
<artifactId>vertx-kafka-client</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cc.iotkit</groupId>
|
|
<artifactId>iot-plugin-core</artifactId>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<source>${java.version}</source>
|
|
<target>${java.version}</target>
|
|
<encoding>utf8</encoding>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|