| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- <?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>3.8.5</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>
- <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-framework</artifactId>
- </dependency>
- <dependency>
- <groupId>com.fastbee</groupId>
- <artifactId>fastbee-quartz</artifactId>
- </dependency>
- <dependency>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-text</artifactId>
- <version>1.6</version>
- </dependency>
- <!-- oauth2-->
- <dependency>
- <groupId>org.springframework.security.oauth</groupId>
- <artifactId>spring-security-oauth2</artifactId>
- <version>2.5.1.RELEASE</version>
- </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>
- <version>1.2.5</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>
- <!-- TDengine连接 START-->
- <dependency>
- <groupId>com.taosdata.jdbc</groupId>
- <artifactId>taos-jdbcdriver</artifactId>
- <version>2.0.38</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>
- </dependencies>
- </project>
|