pom.xml 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>fastbee-service</artifactId>
  7. <groupId>com.fastbee</groupId>
  8. <version>${fastbee.version}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>fastbee-iot-service</artifactId>
  12. <description>
  13. 设备业务模块
  14. </description>
  15. <dependencies>
  16. <!-- 通用工具-->
  17. <dependency>
  18. <groupId>com.fastbee</groupId>
  19. <artifactId>fastbee-common</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>io.swagger</groupId>
  23. <artifactId>swagger-annotations</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.apache.velocity</groupId>
  27. <artifactId>velocity-engine-core</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.fastbee</groupId>
  31. <artifactId>fastbee-framework</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.fastbee</groupId>
  35. <artifactId>fastbee-quartz</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.apache.commons</groupId>
  39. <artifactId>commons-text</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  44. </dependency>
  45. <!-- mqtt-->
  46. <dependency>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-configuration-processor</artifactId>
  49. <optional>true</optional>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.eclipse.paho</groupId>
  53. <artifactId>org.eclipse.paho.client.mqttv3</artifactId>
  54. </dependency>
  55. <!--AES-->
  56. <dependency>
  57. <groupId>org.springframework</groupId>
  58. <artifactId>spring-context</artifactId>
  59. <version>5.2.3.RELEASE</version>
  60. </dependency>
  61. <!-- 第三方登录模块-->
  62. <dependency>
  63. <groupId>me.zhyd.oauth</groupId>
  64. <artifactId>JustAuth</artifactId>
  65. <version>${justAuth.version}</version>
  66. </dependency>
  67. <!-- 通用http接口模块-->
  68. <dependency>
  69. <groupId>com.dtflys.forest</groupId>
  70. <artifactId>forest-spring-boot-starter</artifactId>
  71. <version>${forest.version}</version>
  72. </dependency>
  73. <!-- TDengine连接 START-->
  74. <dependency>
  75. <groupId>com.taosdata.jdbc</groupId>
  76. <artifactId>taos-jdbcdriver</artifactId>
  77. <version>${tdengine.version}</version>
  78. </dependency>
  79. <!-- TDengine连接 END-->
  80. <dependency>
  81. <groupId>cn.hutool</groupId>
  82. <artifactId>hutool-all</artifactId>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.yomahub</groupId>
  86. <artifactId>liteflow-spring-boot-starter</artifactId>
  87. <version>${liteflow.version}</version>
  88. </dependency>
  89. <!--数据库规则配置源插件-->
  90. <dependency>
  91. <groupId>com.yomahub</groupId>
  92. <artifactId>liteflow-rule-sql</artifactId>
  93. <version>${liteflow.version}</version>
  94. </dependency>
  95. <!--groovy脚本插件-->
  96. <dependency>
  97. <groupId>com.yomahub</groupId>
  98. <artifactId>liteflow-script-groovy</artifactId>
  99. <version>${liteflow.version}</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>com.fastbee</groupId>
  103. <artifactId>fastbee-ruleEngine</artifactId>
  104. </dependency>
  105. <!--引入DM8驱动-->
  106. <dependency>
  107. <groupId>com.dameng</groupId>
  108. <artifactId>Dm8JdbcDriver18</artifactId>
  109. <version>8.1.1.49</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>com.microsoft.sqlserver</groupId>
  113. <artifactId>mssql-jdbc</artifactId>
  114. <version>8.4.1.jre8</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>org.postgresql</groupId>
  118. <artifactId>postgresql</artifactId>
  119. <version>42.5.0</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>com.oracle.database.jdbc</groupId>
  123. <artifactId>ojdbc8</artifactId>
  124. <version>19.3.0.0</version>
  125. </dependency>
  126. </dependencies>
  127. </project>