pom.xml 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  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>3.8.5</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. <version>1.6.2</version>
  25. <scope>compile</scope>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.apache.velocity</groupId>
  29. <artifactId>velocity-engine-core</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.fastbee</groupId>
  33. <artifactId>fastbee-framework</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.fastbee</groupId>
  37. <artifactId>fastbee-quartz</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.apache.commons</groupId>
  41. <artifactId>commons-text</artifactId>
  42. <version>1.6</version>
  43. </dependency>
  44. <!-- oauth2-->
  45. <dependency>
  46. <groupId>org.springframework.security.oauth</groupId>
  47. <artifactId>spring-security-oauth2</artifactId>
  48. <version>2.5.1.RELEASE</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  53. </dependency>
  54. <!-- mqtt-->
  55. <dependency>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-configuration-processor</artifactId>
  58. <optional>true</optional>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.eclipse.paho</groupId>
  62. <artifactId>org.eclipse.paho.client.mqttv3</artifactId>
  63. <version>1.2.5</version>
  64. </dependency>
  65. <!--AES-->
  66. <dependency>
  67. <groupId>org.springframework</groupId>
  68. <artifactId>spring-context</artifactId>
  69. <version>5.2.3.RELEASE</version>
  70. </dependency>
  71. <!-- 第三方登录模块-->
  72. <dependency>
  73. <groupId>me.zhyd.oauth</groupId>
  74. <artifactId>JustAuth</artifactId>
  75. <version>${justAuth.version}</version>
  76. </dependency>
  77. <!-- 通用http接口模块-->
  78. <dependency>
  79. <groupId>com.dtflys.forest</groupId>
  80. <artifactId>forest-spring-boot-starter</artifactId>
  81. <version>${forest.version}</version>
  82. </dependency>
  83. <!-- TDengine连接 START-->
  84. <dependency>
  85. <groupId>com.taosdata.jdbc</groupId>
  86. <artifactId>taos-jdbcdriver</artifactId>
  87. <version>2.0.38</version>
  88. </dependency>
  89. <!-- TDengine连接 END-->
  90. <dependency>
  91. <groupId>cn.hutool</groupId>
  92. <artifactId>hutool-all</artifactId>
  93. </dependency>
  94. <dependency>
  95. <groupId>com.yomahub</groupId>
  96. <artifactId>liteflow-spring-boot-starter</artifactId>
  97. <version>${liteflow.version}</version>
  98. </dependency>
  99. <!--数据库规则配置源插件-->
  100. <dependency>
  101. <groupId>com.yomahub</groupId>
  102. <artifactId>liteflow-rule-sql</artifactId>
  103. <version>${liteflow.version}</version>
  104. </dependency>
  105. <!--groovy脚本插件-->
  106. <dependency>
  107. <groupId>com.yomahub</groupId>
  108. <artifactId>liteflow-script-groovy</artifactId>
  109. <version>${liteflow.version}</version>
  110. </dependency>
  111. </dependencies>
  112. </project>