pom.xml 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439
  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. <groupId>cn.tr</groupId>
  6. <artifactId>tr-dependencies</artifactId>
  7. <version>${revision}</version>
  8. <packaging>pom</packaging>
  9. <modelVersion>4.0.0</modelVersion>
  10. <name>${project.artifactId}</name>
  11. <description>基础 bom 文件,管理整个项目的依赖版本</description>
  12. <properties>
  13. <skip>true</skip>
  14. <revision>0.0.9</revision>
  15. <spring-boot.version>2.7.8</spring-boot.version>
  16. <hutool.version>5.8.12</hutool.version>
  17. <mapstruct.version>1.5.3.Final</mapstruct.version>
  18. <lombok.version>1.18.20</lombok.version>
  19. <ip2region.version>2.6.6</ip2region.version>
  20. <!--数据库-->
  21. <mybatis-plus.version>3.5.3.1</mybatis-plus.version>
  22. <mybatis-plus-generator.version>3.5.3.1</mybatis-plus-generator.version>
  23. <mysql-connector.version>8.0.27</mysql-connector.version>
  24. <druid.version>1.2.8</druid.version>
  25. <pagehelper.boot.version>1.4.5</pagehelper.boot.version>
  26. <!--权限相关-->
  27. <satoken.version>1.34.0</satoken.version>
  28. <!--TEST测试相关-->
  29. <podam.version>7.2.11.RELEASE</podam.version>
  30. <mockito-inline.version>4.11.0</mockito-inline.version>
  31. <caffeine.version>2.6.2</caffeine.version>
  32. <!--redission-->
  33. <redisson.version>3.17.7</redisson.version>
  34. <!--文件存储-->
  35. <aliyun-oss.version>3.15.0</aliyun-oss.version>
  36. <minio.version>8.5.1</minio.version>
  37. <qiniu.version>7.9.5</qiniu.version>
  38. <!--文件导入导出-->
  39. <poi.version>5.2.2</poi.version>
  40. <!--websocket-->
  41. <tio-websocket.version>3.6.0.v20200315-RELEASE</tio-websocket.version>
  42. <!--字节码增强-->
  43. <javassist.version>3.25.0-GA</javassist.version>
  44. <!--flink版本-->
  45. <flink.version>1.16.1</flink.version>
  46. <!--在线文档-->
  47. <knife4j.verison>4.0.0</knife4j.verison>
  48. <!--阿里云短信-->
  49. <ali.core.version>4.6.0</ali.core.version>
  50. <!--渲染模板引擎-->
  51. <beetl.version>1.2.40.Beetl.RELEASE</beetl.version>
  52. <ali.dysmsapi.version>2.2.1</ali.dysmsapi.version>
  53. </properties>
  54. <dependencyManagement>
  55. <dependencies>
  56. <!--springboot pom文件-->
  57. <dependency>
  58. <groupId>org.springframework.boot</groupId>
  59. <artifactId>spring-boot-dependencies</artifactId>
  60. <version>${spring-boot.version}</version>
  61. <type>pom</type>
  62. <scope>import</scope>
  63. </dependency>
  64. <!--redis客户端-->
  65. <dependency>
  66. <groupId>org.redisson</groupId>
  67. <artifactId>redisson-spring-boot-starter</artifactId>
  68. <version>${redisson.version}</version>
  69. <exclusions>
  70. <exclusion>
  71. <groupId>org.springframework.boot</groupId>
  72. <artifactId>spring-boot-starter-logging</artifactId>
  73. </exclusion>
  74. </exclusions>
  75. </dependency>
  76. <!-- Sa-Token 权限认证,在线文档:https://sa-token.cc -->
  77. <dependency>
  78. <groupId>cn.dev33</groupId>
  79. <artifactId>sa-token-spring-boot-starter</artifactId>
  80. <version>${satoken.version}</version>
  81. </dependency>
  82. <!-- Sa-Token 整合 Redis (使用 jdk 默认序列化方式) -->
  83. <dependency>
  84. <groupId>cn.dev33</groupId>
  85. <artifactId>sa-token-dao-redis</artifactId>
  86. <version>${satoken.version}</version>
  87. </dependency>
  88. <!--使用mapstruct转换-->
  89. <dependency>
  90. <groupId>org.mapstruct</groupId>
  91. <artifactId>mapstruct</artifactId>
  92. <version>${mapstruct.version}</version>
  93. </dependency>
  94. <!--hutool工具类包-->
  95. <dependency>
  96. <groupId>cn.hutool</groupId>
  97. <artifactId>hutool-all</artifactId>
  98. <version>${hutool.version}</version>
  99. </dependency>
  100. <!--lombok-->
  101. <dependency>
  102. <groupId>org.projectlombok</groupId>
  103. <artifactId>lombok</artifactId>
  104. <version>${lombok.version}</version>
  105. </dependency>
  106. <!-- ip地址查询 -->
  107. <dependency>
  108. <groupId>org.lionsoul</groupId>
  109. <artifactId>ip2region</artifactId>
  110. <version>${ip2region.version}</version>
  111. </dependency>
  112. <!--mybatis-plus-->
  113. <dependency>
  114. <groupId>com.baomidou</groupId>
  115. <artifactId>mybatis-plus-boot-starter</artifactId>
  116. <version>${mybatis-plus.version}</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>com.baomidou</groupId>
  120. <artifactId>mybatis-plus-extension</artifactId>
  121. <version>${mybatis-plus.version}</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>com.baomidou</groupId>
  125. <artifactId>mybatis-plus-generator</artifactId> <!-- 代码生成器,使用它解析表结构 -->
  126. <version>${mybatis-plus-generator.version}</version>
  127. </dependency>
  128. <!--mybatis-plus-->
  129. <!--阿里数据库连接池 -->
  130. <dependency>
  131. <groupId>com.alibaba</groupId>
  132. <artifactId>druid-spring-boot-starter</artifactId>
  133. <version>${druid.version}</version>
  134. </dependency>
  135. <!-- pagehelper 分页插件 -->
  136. <dependency>
  137. <groupId>com.github.pagehelper</groupId>
  138. <artifactId>pagehelper-spring-boot-starter</artifactId>
  139. <version>${pagehelper.boot.version}</version>
  140. </dependency>
  141. <!--Test测试自动填充对象属性-->
  142. <dependency>
  143. <groupId>uk.co.jemos.podam</groupId>
  144. <artifactId>podam</artifactId>
  145. <version>${podam.version}</version>
  146. </dependency>
  147. <dependency>
  148. <groupId>org.mockito</groupId>
  149. <artifactId>mockito-inline</artifactId>
  150. <version>${mockito-inline.version}</version> <!-- 支持 Mockito 的 final 类与 static 方法的 mock -->
  151. </dependency>
  152. <dependency>
  153. <groupId>org.springframework.boot</groupId>
  154. <artifactId>spring-boot-starter-test</artifactId>
  155. <version>${spring-boot.version}</version>
  156. <exclusions>
  157. <exclusion>
  158. <artifactId>asm</artifactId>
  159. <groupId>org.ow2.asm</groupId>
  160. </exclusion>
  161. <exclusion>
  162. <groupId>org.mockito</groupId>
  163. <artifactId>mockito-core</artifactId>
  164. </exclusion>
  165. </exclusions>
  166. </dependency>
  167. <!--缓存-->
  168. <dependency>
  169. <groupId>com.github.ben-manes.caffeine</groupId>
  170. <artifactId>caffeine</artifactId>
  171. <version>${caffeine.version}</version>
  172. </dependency>
  173. <!--OSS模块-->
  174. <!--ali OSS存储-->
  175. <dependency>
  176. <groupId>com.aliyun.oss</groupId>
  177. <artifactId>aliyun-sdk-oss</artifactId>
  178. <version>${aliyun-oss.version}</version>
  179. </dependency>
  180. <!-- minio -->
  181. <dependency>
  182. <groupId>io.minio</groupId>
  183. <artifactId>minio</artifactId>
  184. <version>${minio.version}</version>
  185. </dependency>
  186. <!--七牛云-->
  187. <dependency>
  188. <groupId>com.qiniu</groupId>
  189. <artifactId>qiniu-java-sdk</artifactId>
  190. <version>${qiniu.version}</version>
  191. </dependency>
  192. <!--OSS模块-->
  193. <!-- excel导入导出工具 -->
  194. <dependency>
  195. <groupId>org.apache.poi</groupId>
  196. <artifactId>poi-ooxml</artifactId>
  197. <version>${poi.version}</version>
  198. </dependency>
  199. <!--websocket-->
  200. <dependency>
  201. <groupId>org.t-io</groupId>
  202. <artifactId>tio-websocket-spring-boot-starter</artifactId>
  203. <version>${tio-websocket.version}</version>
  204. </dependency>
  205. <!--字节码增强技术-->
  206. <dependency>
  207. <groupId>org.javassist</groupId>
  208. <artifactId>javassist</artifactId>
  209. <version>${javassist.version}</version>
  210. </dependency>
  211. <!--flink 组件-->
  212. <dependency>
  213. <groupId>org.apache.flink</groupId>
  214. <artifactId>flink-streaming-java</artifactId>
  215. <version>${flink.version}</version>
  216. </dependency>
  217. <dependency>
  218. <groupId>org.apache.flink</groupId>
  219. <artifactId>flink-clients</artifactId>
  220. <version>${flink.version}</version>
  221. </dependency>
  222. <!--在线文档-->
  223. <dependency>
  224. <groupId>com.github.xiaoymin</groupId>
  225. <artifactId>knife4j-openapi2-spring-boot-starter</artifactId>
  226. <version>${knife4j.verison}</version>
  227. </dependency>
  228. <!--业务组件-->
  229. <dependency>
  230. <groupId>cn.tr</groupId>
  231. <artifactId>tr-framework</artifactId>
  232. <version>${revision}</version>
  233. </dependency>
  234. <dependency>
  235. <groupId>cn.tr</groupId>
  236. <artifactId>tr-spring-boot-starter-plugin-test</artifactId>
  237. <version>${revision}</version>
  238. </dependency>
  239. <dependency>
  240. <groupId>cn.tr</groupId>
  241. <artifactId>tr-spring-boot-starter-plugin-flink</artifactId>
  242. <version>${revision}</version>
  243. </dependency>
  244. <dependency>
  245. <groupId>mysql</groupId>
  246. <artifactId>mysql-connector-java</artifactId>
  247. <version>${mysql-connector.version}</version>
  248. </dependency>
  249. <dependency>
  250. <groupId>cn.tr</groupId>
  251. <artifactId>tr-spring-boot-starter-plugin-mybatis</artifactId>
  252. <version>${revision}</version>
  253. </dependency>
  254. <!--缓存插件-->
  255. <dependency>
  256. <groupId>cn.tr</groupId>
  257. <artifactId>tr-spring-boot-starter-plugin-cache</artifactId>
  258. <version>${revision}</version>
  259. </dependency>
  260. <!--文件插件-->
  261. <dependency>
  262. <groupId>cn.tr</groupId>
  263. <artifactId>tr-spring-boot-starter-plugin-file</artifactId>
  264. <version>${revision}</version>
  265. </dependency>
  266. <!--消息总线-->
  267. <dependency>
  268. <groupId>cn.tr</groupId>
  269. <artifactId>tr-spring-boot-starter-plugin-eventbus</artifactId>
  270. <version>${revision}</version>
  271. </dependency>
  272. <!--satoken插件-->
  273. <dependency>
  274. <groupId>cn.tr</groupId>
  275. <artifactId>tr-spring-boot-starter-plugin-satoken</artifactId>
  276. <version>${revision}</version>
  277. </dependency>
  278. <!--字典插件-->
  279. <dependency>
  280. <groupId>cn.tr</groupId>
  281. <artifactId>tr-spring-boot-starter-plugin-dict</artifactId>
  282. <version>${revision}</version>
  283. </dependency>
  284. <!--日志记录插件-->
  285. <dependency>
  286. <groupId>cn.tr</groupId>
  287. <artifactId>tr-spring-boot-starter-plugin-operatelog</artifactId>
  288. <version>${revision}</version>
  289. </dependency>
  290. <!--对象转换插件-->
  291. <dependency>
  292. <groupId>cn.tr</groupId>
  293. <artifactId>tr-spring-boot-starter-plugin-biz-bean-mapper</artifactId>
  294. <version>${revision}</version>
  295. </dependency>
  296. <!--在线文档插件-->
  297. <dependency>
  298. <groupId>cn.tr</groupId>
  299. <artifactId>tr-spring-boot-starter-plugin-doc</artifactId>
  300. <version>${revision}</version>
  301. </dependency>
  302. <!--租户插件-->
  303. <dependency>
  304. <groupId>cn.tr</groupId>
  305. <artifactId>tr-spring-boot-starter-plugin-biz-tenant</artifactId>
  306. <version>${revision}</version>
  307. </dependency>
  308. <!--常量业务插件-->
  309. <dependency>
  310. <groupId>cn.tr</groupId>
  311. <artifactId>tr-spring-boot-starter-plugin-biz-constant</artifactId>
  312. <version>${revision}</version>
  313. </dependency>
  314. <!--表格插件-->
  315. <dependency>
  316. <groupId>cn.tr</groupId>
  317. <artifactId>tr-spring-boot-starter-plugin-biz-excel</artifactId>
  318. <version>${revision}</version>
  319. </dependency>
  320. <!--websocket插件-->
  321. <dependency>
  322. <groupId>cn.tr</groupId>
  323. <artifactId>tr-spring-boot-starter-plugin-websocket</artifactId>
  324. <version>${revision}</version>
  325. </dependency>
  326. <!--表结构自动更新插件-->
  327. <dependency>
  328. <groupId>cn.tr</groupId>
  329. <artifactId>tr-spring-boot-starter-plugin-mp-enhance-actable</artifactId>
  330. <version>${revision}</version>
  331. </dependency>
  332. <!--打印banner插件-->
  333. <dependency>
  334. <groupId>cn.tr</groupId>
  335. <artifactId>tr-spring-boot-starter-plugin-banner</artifactId>
  336. <version>${revision}</version>
  337. </dependency>
  338. <!--敏感词插件-->
  339. <dependency>
  340. <groupId>cn.tr</groupId>
  341. <artifactId>tr-spring-boot-starter-plugin-desensitize</artifactId>
  342. <version>${revision}</version>
  343. </dependency>
  344. <!--web插件-->
  345. <dependency>
  346. <groupId>cn.tr</groupId>
  347. <artifactId>tr-spring-boot-starter-plugin-web</artifactId>
  348. <version>${revision}</version>
  349. </dependency>
  350. <!--阿里云短信-->
  351. <dependency>
  352. <groupId>com.aliyun</groupId>
  353. <artifactId>aliyun-java-sdk-core</artifactId>
  354. <version>${ali.core.version}</version>
  355. </dependency>
  356. <dependency>
  357. <groupId>com.aliyun</groupId>
  358. <artifactId>aliyun-java-sdk-dysmsapi</artifactId>
  359. <version>${ali.dysmsapi.version}</version>
  360. </dependency>
  361. <!--阿里云短信-->
  362. <dependency>
  363. <groupId>com.ibeetl</groupId>
  364. <artifactId>beetl-framework-starter</artifactId>
  365. <version>${beetl.version}</version>
  366. </dependency>
  367. </dependencies>
  368. </dependencyManagement>
  369. </project>