pom.xml 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.lutao</groupId>
  7. <artifactId>cloud-consume</artifactId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <artifactId>cloud-consume-biz</artifactId>
  11. <packaging>jar</packaging>
  12. <description>处理数据</description>
  13. <dependencies>
  14. <!-- LindormTSDB-->
  15. <dependency>
  16. <groupId>com.aliyun.lindorm</groupId>
  17. <artifactId>lindorm-all-client</artifactId>
  18. <version>2.1.7</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.aliyun.lindorm</groupId>
  22. <artifactId>lindorm-tsdb-client</artifactId>
  23. <version>1.0.5</version>
  24. <exclusions>
  25. <exclusion>
  26. <groupId>com.google.code.gson</groupId>
  27. <artifactId>gson</artifactId>
  28. </exclusion>
  29. </exclusions>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.lutao</groupId>
  33. <artifactId>cloud-common-entity</artifactId>
  34. <version>1.0.0</version>
  35. </dependency>
  36. <!--upms api、model 模块-->
  37. <dependency>
  38. <groupId>com.lutao</groupId>
  39. <artifactId>cloud-consume-api</artifactId>
  40. <version>1.0.0</version>
  41. </dependency>
  42. <!--日志处理-->
  43. <dependency>
  44. <groupId>com.lutao</groupId>
  45. <artifactId>cloud-common-log</artifactId>
  46. <version>1.0.0</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.lutao</groupId>
  50. <artifactId>cloud-common-data</artifactId>
  51. <version>1.0.0</version>
  52. </dependency>
  53. <!--swagger-->
  54. <dependency>
  55. <groupId>com.lutao</groupId>
  56. <artifactId>cloud-common-swagger</artifactId>
  57. <version>1.0.0</version>
  58. </dependency>
  59. <!--随机数-->
  60. <dependency>
  61. <groupId>it.unimi.dsi</groupId>
  62. <artifactId>dsiutils</artifactId>
  63. <version>2.6.17</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.apache.commons</groupId>
  67. <artifactId>commons-text</artifactId>
  68. <version>1.10.0</version>
  69. </dependency>
  70. <!--注册中心客户端-->
  71. <dependency>
  72. <groupId>com.alibaba.cloud</groupId>
  73. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  74. <version>2.2.2.RELEASE</version>
  75. <exclusions>
  76. <exclusion>
  77. <groupId>org.springframework.cloud</groupId>
  78. <artifactId>spring-cloud-starter-netflix-ribbon</artifactId>
  79. </exclusion>
  80. </exclusions>
  81. </dependency>
  82. <!-- LB 扩展 -->
  83. <dependency>
  84. <groupId>org.springframework.cloud</groupId>
  85. <artifactId>spring-cloud-starter-loadbalancer</artifactId>
  86. <version>3.0.4</version>
  87. </dependency>
  88. <!--配置中心客户端-->
  89. <dependency>
  90. <groupId>com.alibaba.cloud</groupId>
  91. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  92. <version>2.2.2.RELEASE</version>
  93. </dependency>
  94. <!--spring security 、oauth、jwt依赖-->
  95. <dependency>
  96. <groupId>com.lutao</groupId>
  97. <artifactId>cloud-common-security</artifactId>
  98. <version>1.0.0</version>
  99. </dependency>
  100. <!--XSS 安全过滤-->
  101. <dependency>
  102. <groupId>com.lutao</groupId>
  103. <artifactId>cloud-common-xss</artifactId>
  104. <version>1.0.0</version>
  105. </dependency>
  106. <!-- <dependency>-->
  107. <!-- <groupId>com.github.whvcse</groupId>-->
  108. <!-- <artifactId>easy-captcha</artifactId>-->
  109. <!-- <version>1.6.2</version>-->
  110. <!-- </dependency>-->
  111. <!--支持动态路由配置 -->
  112. <dependency>
  113. <groupId>com.lutao</groupId>
  114. <artifactId>cloud-common-gateway</artifactId>
  115. <version>1.0.0</version>
  116. </dependency>
  117. <!--sentinel 依赖-->
  118. <!-- <dependency>-->
  119. <!-- <groupId>com.lutao</groupId>-->
  120. <!-- <artifactId>cloud-common-sentinel</artifactId>-->
  121. <!-- </dependency>-->
  122. <!--路由控制-->
  123. <dependency>
  124. <groupId>com.lutao</groupId>
  125. <artifactId>cloud-common-gray</artifactId>
  126. <version>1.0.0</version>
  127. </dependency>
  128. <!--mybatis-->
  129. <dependency>
  130. <groupId>com.baomidou</groupId>
  131. <artifactId>mybatis-plus-boot-starter</artifactId>
  132. <version>3.4.3</version>
  133. </dependency>
  134. <!-- druid 连接池 -->
  135. <dependency>
  136. <groupId>com.alibaba</groupId>
  137. <artifactId>druid-spring-boot-starter</artifactId>
  138. <version>1.2.8</version>
  139. </dependency>
  140. <!--数据库-->
  141. <dependency>
  142. <groupId>mysql</groupId>
  143. <artifactId>mysql-connector-java</artifactId>
  144. </dependency>
  145. <!--web 模块-->
  146. <dependency>
  147. <groupId>org.springframework.boot</groupId>
  148. <artifactId>spring-boot-starter-web</artifactId>
  149. <version>2.5.6</version>
  150. </dependency>
  151. <!--undertow容器-->
  152. <dependency>
  153. <groupId>org.springframework.boot</groupId>
  154. <artifactId>spring-boot-starter-undertow</artifactId>
  155. <version>2.5.6</version>
  156. </dependency>
  157. <!--集成logstash-->
  158. <dependency>
  159. <groupId>net.logstash.logback</groupId>
  160. <artifactId>logstash-logback-encoder</artifactId>
  161. <version>5.3</version>
  162. </dependency>
  163. <dependency>
  164. <groupId>org.springframework.boot</groupId>
  165. <artifactId>spring-boot-configuration-processor</artifactId>
  166. <optional>true</optional>
  167. </dependency>
  168. <dependency>
  169. <groupId>org.springframework</groupId>
  170. <artifactId>spring-tx</artifactId>
  171. </dependency>
  172. <!--kafka -->
  173. <dependency>
  174. <groupId>org.springframework.kafka</groupId>
  175. <artifactId>spring-kafka</artifactId>
  176. </dependency>
  177. <dependency>
  178. <groupId>org.apache.kafka</groupId>
  179. <artifactId>kafka-clients</artifactId>
  180. <version>3.8.0</version>
  181. </dependency>
  182. <!-- <dependency>-->
  183. <!-- <groupId>org.mariadb.jdbc</groupId>-->
  184. <!-- <artifactId>mariadb-java-client</artifactId>-->
  185. <!-- <version>3.1.4</version>-->
  186. <!-- <scope>runtime</scope>-->
  187. <!-- </dependency>-->
  188. <dependency>
  189. <groupId>org.springframework.boot</groupId>
  190. <artifactId>spring-boot</artifactId>
  191. </dependency>
  192. <!-- <dependency>-->
  193. <!-- <groupId>com.lutao</groupId>-->
  194. <!-- <artifactId>cloud-mqtt-spring-boot-starter</artifactId>-->
  195. <!-- <version>1.0.0</version>-->
  196. <!-- </dependency>-->
  197. <!-- <dependency>-->
  198. <!-- <groupId>net.dreamlu</groupId>-->
  199. <!-- <artifactId>mica-mqtt-client-spring-boot-starter</artifactId>-->
  200. <!-- <version>2.2.1</version>-->
  201. <!-- </dependency>-->
  202. </dependencies>
  203. <build>
  204. <plugins>
  205. <plugin>
  206. <groupId>org.springframework.boot</groupId>
  207. <artifactId>spring-boot-maven-plugin</artifactId>
  208. </plugin>
  209. <plugin>
  210. <groupId>io.fabric8</groupId>
  211. <artifactId>docker-maven-plugin</artifactId>
  212. <configuration>
  213. <skip>false</skip>
  214. </configuration>
  215. </plugin>
  216. </plugins>
  217. </build>
  218. </project>