123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173 |
- <?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>${revision}</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>fastbee-iot-service</artifactId>
- <description>
- 设备业务模块
- </description>
- <dependencies>
- <!-- 通用工具-->
- <dependency>
- <groupId>com.fastbee</groupId>
- <artifactId>fastbee-common-extend</artifactId>
- </dependency>
- <dependency>
- <groupId>com.fastbee</groupId>
- <artifactId>fastbee-framework</artifactId>
- </dependency>
- <dependency>
- <groupId>io.swagger</groupId>
- <artifactId>swagger-annotations</artifactId>
- <version>1.6.2</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>org.apache.velocity</groupId>
- <artifactId>velocity-engine-core</artifactId>
- </dependency>
- <dependency>
- <groupId>com.fastbee</groupId>
- <artifactId>fastbee-quartz</artifactId>
- </dependency>
- <dependency>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-text</artifactId>
- <version>${commons.text.version}</version>
- </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>
- <version>${paho.mqtt.version}</version>
- </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>
- <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-notify-web</artifactId>
- </dependency>
- <dependency>
- <groupId>com.fastbee</groupId>
- <artifactId>fastbee-http</artifactId>
- </dependency>
- <dependency>
- <groupId>com.fasterxml.jackson.core</groupId>
- <artifactId>jackson-databind</artifactId>
- </dependency>
- <dependency>
- <groupId>com.fastbee</groupId>
- <artifactId>fastbee-ruleEngine</artifactId>
- </dependency>
- <dependency>
- <groupId>com.microsoft.sqlserver</groupId>
- <artifactId>mssql-jdbc</artifactId>
- <version>8.4.1.jre8</version>
- </dependency>
- <dependency>
- <groupId>org.postgresql</groupId>
- <artifactId>postgresql</artifactId>
- <version>42.5.0</version>
- </dependency>
- <dependency>
- <groupId>com.oracle.database.jdbc</groupId>
- <artifactId>ojdbc8</artifactId>
- <version>19.3.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.h2database</groupId>
- <artifactId>h2</artifactId>
- <version>1.4.200</version>
- </dependency>
- <!--引入DM8驱动-->
- <dependency>
- <groupId>com.dameng</groupId>
- <artifactId>Dm8JdbcDriver18</artifactId>
- <version>8.1.1.49</version>
- </dependency>
- <!-- TDengine连接 START-->
- <dependency>
- <groupId>com.taosdata.jdbc</groupId>
- <artifactId>taos-jdbcdriver</artifactId>
- <version>${tdengine.version}</version>
- </dependency>
- <!-- TDengine连接 END-->
- <!-- 海康加密认证SDK -->
- <dependency>
- <groupId>com.hikvision.ga</groupId>
- <artifactId>artemis-http-client</artifactId>
- <version>1.1.3</version>
- </dependency>
- <dependency>
- <groupId>com.fastbee</groupId>
- <artifactId>fastbee-mqtt-client</artifactId>
- </dependency>
- </dependencies>
- </project>
|