mirror of
https://gitee.com/beecue/fastbee.git
synced 2025-12-17 08:25:53 +08:00
126 lines
3.9 KiB
XML
126 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>fastbee-service</artifactId>
|
|
<groupId>com.fastbee</groupId>
|
|
<version>${fastbee.version}</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>fastbee-iot-service</artifactId>
|
|
|
|
<description>
|
|
设备业务模块
|
|
</description>
|
|
|
|
|
|
<dependencies>
|
|
|
|
<!-- 通用工具-->
|
|
<dependency>
|
|
<groupId>com.fastbee</groupId>
|
|
<artifactId>fastbee-common</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.swagger</groupId>
|
|
<artifactId>swagger-annotations</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.velocity</groupId>
|
|
<artifactId>velocity-engine-core</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.fastbee</groupId>
|
|
<artifactId>fastbee-framework</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.fastbee</groupId>
|
|
<artifactId>fastbee-quartz</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-text</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
|
</dependency>
|
|
<!-- mqtt-->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.eclipse.paho</groupId>
|
|
<artifactId>org.eclipse.paho.client.mqttv3</artifactId>
|
|
</dependency>
|
|
<!--AES-->
|
|
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-context</artifactId>
|
|
<version>5.2.3.RELEASE</version>
|
|
</dependency>
|
|
|
|
<!-- 第三方登录模块-->
|
|
<dependency>
|
|
<groupId>me.zhyd.oauth</groupId>
|
|
<artifactId>JustAuth</artifactId>
|
|
<version>${justAuth.version}</version>
|
|
</dependency>
|
|
|
|
<!-- 通用http接口模块-->
|
|
<dependency>
|
|
<groupId>com.dtflys.forest</groupId>
|
|
<artifactId>forest-spring-boot-starter</artifactId>
|
|
<version>${forest.version}</version>
|
|
</dependency>
|
|
|
|
|
|
<!-- TDengine连接 START-->
|
|
<dependency>
|
|
<groupId>com.taosdata.jdbc</groupId>
|
|
<artifactId>taos-jdbcdriver</artifactId>
|
|
<version>${tdengine.version}</version>
|
|
</dependency>
|
|
<!-- TDengine连接 END-->
|
|
|
|
<dependency>
|
|
<groupId>cn.hutool</groupId>
|
|
<artifactId>hutool-all</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.yomahub</groupId>
|
|
<artifactId>liteflow-spring-boot-starter</artifactId>
|
|
<version>${liteflow.version}</version>
|
|
</dependency>
|
|
<!--数据库规则配置源插件-->
|
|
<dependency>
|
|
<groupId>com.yomahub</groupId>
|
|
<artifactId>liteflow-rule-sql</artifactId>
|
|
<version>${liteflow.version}</version>
|
|
</dependency>
|
|
<!--groovy脚本插件-->
|
|
<dependency>
|
|
<groupId>com.yomahub</groupId>
|
|
<artifactId>liteflow-script-groovy</artifactId>
|
|
<version>${liteflow.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.fastbee</groupId>
|
|
<artifactId>fastbee-ruleEngine</artifactId>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|