59 lines
2.0 KiB
XML
59 lines
2.0 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>viewsh-module-iot</artifactId>
|
|||
|
|
<groupId>com.viewsh</groupId>
|
|||
|
|
<version>${revision}</version>
|
|||
|
|
</parent>
|
|||
|
|
<modelVersion>4.0.0</modelVersion>
|
|||
|
|
|
|||
|
|
<artifactId>viewsh-module-iot-rule</artifactId>
|
|||
|
|
<packaging>jar</packaging>
|
|||
|
|
|
|||
|
|
<name>${project.artifactId}</name>
|
|||
|
|
<description>IoT 规则引擎独立模块(DAG + SPI + 抖动抑制 + Aviator 脚本)</description>
|
|||
|
|
|
|||
|
|
<dependencies>
|
|||
|
|
<!-- 内部模块:只依赖 api(DTO/枚举)和 core(消息总线/影子接口) -->
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>com.viewsh</groupId>
|
|||
|
|
<artifactId>viewsh-module-iot-api</artifactId>
|
|||
|
|
<version>${revision}</version>
|
|||
|
|
</dependency>
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>com.viewsh</groupId>
|
|||
|
|
<artifactId>viewsh-module-iot-core</artifactId>
|
|||
|
|
<version>${revision}</version>
|
|||
|
|
</dependency>
|
|||
|
|
|
|||
|
|
<!-- 【关键】Aviator 表达式引擎 -->
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>com.googlecode.aviator</groupId>
|
|||
|
|
<artifactId>aviator</artifactId>
|
|||
|
|
<version>5.3.3</version>
|
|||
|
|
</dependency>
|
|||
|
|
|
|||
|
|
<!-- DB 相关 -->
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>com.viewsh</groupId>
|
|||
|
|
<artifactId>viewsh-spring-boot-starter-mybatis</artifactId>
|
|||
|
|
</dependency>
|
|||
|
|
|
|||
|
|
<!-- 缓存相关 -->
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>com.viewsh</groupId>
|
|||
|
|
<artifactId>viewsh-spring-boot-starter-redis</artifactId>
|
|||
|
|
</dependency>
|
|||
|
|
|
|||
|
|
<!-- 测试 -->
|
|||
|
|
<dependency>
|
|||
|
|
<groupId>com.viewsh</groupId>
|
|||
|
|
<artifactId>viewsh-spring-boot-starter-test</artifactId>
|
|||
|
|
<scope>test</scope>
|
|||
|
|
</dependency>
|
|||
|
|
</dependencies>
|
|||
|
|
|
|||
|
|
</project>
|