pom.xml 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517
  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. <modelVersion>4.0.0</modelVersion>
  6. <groupId>cn.tr</groupId>
  7. <artifactId>tr-dependencies</artifactId>
  8. <version>${revision}</version>
  9. <packaging>pom</packaging>
  10. <properties>
  11. <skip>true</skip>
  12. <revision>2.0.0</revision>
  13. <spring-boot.version>3.5.7</spring-boot.version>
  14. <hutool.version>5.8.41</hutool.version>
  15. <mapstruct.version>1.6.3</mapstruct.version>
  16. <ip2region.version>3.1.1</ip2region.version>
  17. <!--数据库-->
  18. <mybatis-plus.version>3.5.14</mybatis-plus.version>
  19. <mybatis.version>3.5.19</mybatis.version>
  20. <mybatis-plus-generator.version>3.5.14</mybatis-plus-generator.version>
  21. <mysql-connector.version>8.0.33</mysql-connector.version>
  22. <pagehelper.boot.version>2.1.0</pagehelper.boot.version>
  23. <springdoc.version>2.8.13</springdoc.version>
  24. <!--权限相关-->
  25. <satoken.version>1.44.0</satoken.version>
  26. <caffeine.version>2.6.2</caffeine.version>
  27. <!--redission-->
  28. <redisson.version>3.30.0</redisson.version>
  29. <!--文件存储-->
  30. <aliyun-oss.version>3.17.0</aliyun-oss.version>
  31. <minio.version>8.6.0</minio.version>
  32. <qiniu.version>7.9.5</qiniu.version>
  33. <!--文件导入导出-->
  34. <poi.version>5.2.2</poi.version>
  35. <!--在线文档-->
  36. <knife4j.verison>4.5.0</knife4j.verison>
  37. <!--阿里云短信-->
  38. <ali.sms.version>3.0.0</ali.sms.version>
  39. <!--渲染模板引擎-->
  40. <beetl.version>1.2.40.Beetl.RELEASE</beetl.version>
  41. <!--硬件信息-->
  42. <oshi.core.version>6.2.2</oshi.core.version>
  43. <easy-captcha.version>1.6.2</easy-captcha.version>
  44. <easy-excel.version>4.0.3</easy-excel.version>
  45. <poi-tl.version>1.12.0</poi-tl.version>
  46. <poi-ooxml-schemas.version>4.1.2</poi-ooxml-schemas.version>
  47. <commons-cli.version>1.5.0</commons-cli.version>
  48. <okhttp.version>4.12.0</okhttp.version>
  49. <log4j2.version>2.24.3</log4j2.version>
  50. <lang3.version>3.18.0</lang3.version>
  51. <wx.version>4.7.0</wx.version>
  52. <langchain4j.version>1.8.0-beta15</langchain4j.version>
  53. <kuaishou.version>1.0.6</kuaishou.version>
  54. <httpclient.version>4.5.13</httpclient.version>
  55. <spring-integration.version>6.2.4</spring-integration.version>
  56. <fastjson.version>1.2.83</fastjson.version>
  57. <token-core.version>1.44.0</token-core.version>
  58. </properties>
  59. <dependencyManagement>
  60. <dependencies>
  61. <!--springboot pom文件-->
  62. <dependency>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-dependencies</artifactId>
  65. <version>${spring-boot.version}</version>
  66. <exclusions>
  67. <exclusion>
  68. <groupId>org.apache.commons</groupId>
  69. <artifactId>commons-lang3</artifactId>
  70. </exclusion>
  71. </exclusions>
  72. <type>pom</type>
  73. <scope>import</scope>
  74. </dependency>
  75. <!-- Hutool - 强大的工具类库 -->
  76. <dependency>
  77. <groupId>cn.hutool</groupId>
  78. <artifactId>hutool-bom</artifactId>
  79. <version>${hutool.version}</version>
  80. <type>pom</type>
  81. <scope>import</scope>
  82. </dependency>
  83. <dependency>
  84. <groupId>dev.langchain4j</groupId>
  85. <artifactId>langchain4j-spring-boot-starter</artifactId>
  86. <version>${langchain4j.version}</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>dev.langchain4j</groupId>
  90. <artifactId>langchain4j-reactor</artifactId>
  91. <version>${langchain4j.version}</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>dev.langchain4j</groupId>
  95. <artifactId>langchain4j-open-ai-spring-boot-starter</artifactId>
  96. <version>${langchain4j.version}</version>
  97. </dependency>
  98. <!--redis客户端-->
  99. <dependency>
  100. <groupId>org.redisson</groupId>
  101. <artifactId>redisson-spring-boot-starter</artifactId>
  102. <version>${redisson.version}</version>
  103. <exclusions>
  104. <exclusion>
  105. <groupId>org.springframework.boot</groupId>
  106. <artifactId>spring-boot-starter-logging</artifactId>
  107. </exclusion>
  108. </exclusions>
  109. </dependency>
  110. <dependency>
  111. <groupId>com.github.binarywang</groupId>
  112. <artifactId>weixin-java-miniapp</artifactId>
  113. <version>${wx.version}</version>
  114. </dependency>
  115. <!--微信对应工具类-->
  116. <dependency>
  117. <groupId>com.github.binarywang</groupId>
  118. <artifactId>weixin-java-mp</artifactId>
  119. <version>${wx.version}</version>
  120. </dependency>
  121. <!-- Sa-Token 权限认证,在线文档:https://sa-token.cc -->
  122. <dependency>
  123. <groupId>cn.dev33</groupId>
  124. <artifactId>sa-token-spring-boot3-starter</artifactId>
  125. <version>${satoken.version}</version>
  126. </dependency>
  127. <!-- Sa-Token 整合 RedisTemplate -->
  128. <dependency>
  129. <groupId>cn.dev33</groupId>
  130. <artifactId>sa-token-redis-template</artifactId>
  131. <version>${satoken.version}</version>
  132. </dependency>
  133. <!--使用mapstruct转换-->
  134. <dependency>
  135. <groupId>org.mapstruct</groupId>
  136. <artifactId>mapstruct</artifactId>
  137. <version>${mapstruct.version}</version>
  138. </dependency>
  139. <!-- ip地址查询 -->
  140. <dependency>
  141. <groupId>org.lionsoul</groupId>
  142. <artifactId>ip2region</artifactId>
  143. <version>${ip2region.version}</version>
  144. </dependency>
  145. <!--mybatis-plus-->
  146. <dependency>
  147. <groupId>org.mybatis</groupId>
  148. <artifactId>mybatis</artifactId>
  149. <version>${mybatis.version}</version>
  150. </dependency>
  151. <dependency>
  152. <groupId>com.baomidou</groupId>
  153. <artifactId>mybatis-plus-spring-boot3-starter</artifactId>
  154. <version>${mybatis-plus.version}</version>
  155. </dependency>
  156. <dependency>
  157. <groupId>com.baomidou</groupId>
  158. <artifactId>mybatis-plus-jsqlparser</artifactId>
  159. <version>${mybatis-plus.version}</version>
  160. </dependency>
  161. <dependency>
  162. <groupId>com.baomidou</groupId>
  163. <artifactId>mybatis-plus-generator</artifactId> <!-- 代码生成器,使用它解析表结构 -->
  164. <version>${mybatis-plus-generator.version}</version>
  165. </dependency>
  166. <!--mybatis-plus-->
  167. <!-- pagehelper 分页插件 -->
  168. <dependency>
  169. <groupId>com.github.pagehelper</groupId>
  170. <artifactId>pagehelper-spring-boot-starter</artifactId>
  171. <version>${pagehelper.boot.version}</version>
  172. <exclusions>
  173. <exclusion>
  174. <artifactId>log4j-to-slf4j</artifactId>
  175. <groupId>org.apache.logging.log4j</groupId>
  176. </exclusion>
  177. </exclusions>
  178. </dependency>
  179. <!--缓存-->
  180. <dependency>
  181. <groupId>com.github.ben-manes.caffeine</groupId>
  182. <artifactId>caffeine</artifactId>
  183. <version>${caffeine.version}</version>
  184. </dependency>
  185. <!--OSS模块-->
  186. <!--ali OSS存储-->
  187. <dependency>
  188. <groupId>com.aliyun.oss</groupId>
  189. <artifactId>aliyun-sdk-oss</artifactId>
  190. <version>${aliyun-oss.version}</version>
  191. </dependency>
  192. <!-- minio -->
  193. <dependency>
  194. <groupId>io.minio</groupId>
  195. <artifactId>minio</artifactId>
  196. <version>${minio.version}</version>
  197. </dependency>
  198. <!--OSS模块-->
  199. <!--系统硬件信息-->
  200. <dependency>
  201. <groupId>com.github.oshi</groupId>
  202. <artifactId>oshi-core</artifactId>
  203. <version>${oshi.core.version}</version>
  204. </dependency>
  205. <dependency>
  206. <groupId>com.deepoove</groupId>
  207. <artifactId>poi-tl</artifactId>
  208. <version>${poi-tl.version}</version>
  209. <exclusions>
  210. <exclusion>
  211. <groupId>org.apache.poi</groupId>
  212. <artifactId>poi-ooxml</artifactId>
  213. </exclusion>
  214. </exclusions>
  215. </dependency>
  216. <dependency>
  217. <groupId>org.apache.poi</groupId>
  218. <artifactId>poi</artifactId>
  219. <version>${poi.version}</version>
  220. </dependency>
  221. <dependency>
  222. <groupId>org.apache.poi</groupId>
  223. <artifactId>poi-ooxml</artifactId>
  224. <version>${poi.version}</version>
  225. </dependency>
  226. <dependency>
  227. <groupId>org.apache.poi</groupId>
  228. <artifactId>poi-ooxml-schemas</artifactId>
  229. <version>${poi-ooxml-schemas.version}</version>
  230. </dependency>
  231. <dependency>
  232. <groupId>com.github.whvcse</groupId>
  233. <artifactId>easy-captcha</artifactId>
  234. <version>${easy-captcha.version}</version>
  235. </dependency>
  236. <!--在线文档-->
  237. <dependency>
  238. <groupId>org.springdoc</groupId>
  239. <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
  240. <version>${springdoc.version}</version>
  241. </dependency>
  242. <dependency>
  243. <groupId>com.github.xiaoymin</groupId>
  244. <artifactId>knife4j-openapi3-jakarta-spring-boot-starter</artifactId>
  245. <version>${knife4j.verison}</version>
  246. </dependency>
  247. <!--业务组件-->
  248. <dependency>
  249. <groupId>cn.tr</groupId>
  250. <artifactId>tr-framework</artifactId>
  251. <version>${revision}</version>
  252. </dependency>
  253. <dependency>
  254. <groupId>cn.tr</groupId>
  255. <artifactId>tr-spring-boot-starter-plugin-lock</artifactId>
  256. <version>${revision}</version>
  257. </dependency>
  258. <dependency>
  259. <groupId>mysql</groupId>
  260. <artifactId>mysql-connector-java</artifactId>
  261. <version>${mysql-connector.version}</version>
  262. </dependency>
  263. <dependency>
  264. <groupId>cn.tr</groupId>
  265. <artifactId>tr-spring-boot-starter-plugin-mybatis</artifactId>
  266. <version>${revision}</version>
  267. </dependency>
  268. <!--缓存插件-->
  269. <dependency>
  270. <groupId>cn.tr</groupId>
  271. <artifactId>tr-spring-boot-starter-plugin-cache</artifactId>
  272. <version>${revision}</version>
  273. </dependency>
  274. <!--文件插件-->
  275. <dependency>
  276. <groupId>cn.tr</groupId>
  277. <artifactId>tr-spring-boot-starter-plugin-file</artifactId>
  278. <version>${revision}</version>
  279. </dependency>
  280. <!--satoken插件-->
  281. <dependency>
  282. <groupId>cn.tr</groupId>
  283. <artifactId>tr-spring-boot-starter-plugin-satoken</artifactId>
  284. <version>${revision}</version>
  285. </dependency>
  286. <!--租户插件-->
  287. <dependency>
  288. <groupId>cn.tr</groupId>
  289. <artifactId>tr-spring-boot-starter-plugin-biz-tenant</artifactId>
  290. <version>${revision}</version>
  291. </dependency>
  292. <!--打印banner插件-->
  293. <dependency>
  294. <groupId>cn.tr</groupId>
  295. <artifactId>tr-spring-boot-starter-plugin-banner</artifactId>
  296. <version>${revision}</version>
  297. </dependency>
  298. <dependency>
  299. <groupId>cn.tr</groupId>
  300. <artifactId>tr-spring-boot-starter-plugin-sse</artifactId>
  301. <version>${revision}</version>
  302. </dependency>
  303. <!--敏感词插件-->
  304. <dependency>
  305. <groupId>cn.tr</groupId>
  306. <artifactId>tr-spring-boot-starter-plugin-desensitize</artifactId>
  307. <version>${revision}</version>
  308. </dependency>
  309. <!--web插件-->
  310. <dependency>
  311. <groupId>cn.tr</groupId>
  312. <artifactId>tr-spring-boot-starter-plugin-web</artifactId>
  313. <version>${revision}</version>
  314. </dependency>
  315. <dependency>
  316. <groupId>cn.tr</groupId>
  317. <artifactId>tr-spring-boot-starter-plugin-quartz</artifactId>
  318. <version>${revision}</version>
  319. </dependency>
  320. <!--api模块-->
  321. <dependency>
  322. <groupId>cn.tr</groupId>
  323. <artifactId>tr-module-system-api</artifactId>
  324. <version>${revision}</version>
  325. </dependency>
  326. <dependency>
  327. <groupId>cn.tr</groupId>
  328. <artifactId>tr-module-system</artifactId>
  329. <version>${revision}</version>
  330. </dependency>
  331. <dependency>
  332. <groupId>cn.tr</groupId>
  333. <artifactId>tr-modules-phototherapy</artifactId>
  334. <version>${revision}</version>
  335. </dependency>
  336. <dependency>
  337. <groupId>cn.tr</groupId>
  338. <artifactId>tr-module-jgliu</artifactId>
  339. <version>${revision}</version>
  340. </dependency>
  341. <dependency>
  342. <groupId>cn.tr</groupId>
  343. <artifactId>tr-module-platform</artifactId>
  344. <version>${revision}</version>
  345. </dependency>
  346. <dependency>
  347. <groupId>cn.tr</groupId>
  348. <artifactId>tr-module-ai</artifactId>
  349. <version>${revision}</version>
  350. </dependency>
  351. <dependency>
  352. <groupId>cn.tr</groupId>
  353. <artifactId>tr-module-export</artifactId>
  354. <version>${revision}</version>
  355. </dependency>
  356. <!--导出api模块-->
  357. <dependency>
  358. <groupId>cn.tr</groupId>
  359. <artifactId>tr-module-export-api</artifactId>
  360. <version>${revision}</version>
  361. </dependency>
  362. <!--短信模块-->
  363. <dependency>
  364. <groupId>cn.tr</groupId>
  365. <artifactId>tr-spring-boot-starter-plugin-sms</artifactId>
  366. <version>${revision}</version>
  367. </dependency>
  368. <!--阿里云短信-->
  369. <dependency>
  370. <groupId>com.aliyun</groupId>
  371. <artifactId>dysmsapi20170525</artifactId>
  372. <version>${ali.sms.version}</version>
  373. </dependency>
  374. <dependency>
  375. <groupId>com.ibeetl</groupId>
  376. <artifactId>beetl-framework-starter</artifactId>
  377. <version>${beetl.version}</version>
  378. </dependency>
  379. <dependency>
  380. <groupId>com.alibaba</groupId>
  381. <artifactId>easyexcel</artifactId>
  382. <version>${easy-excel.version}</version>
  383. </dependency>
  384. <dependency>
  385. <groupId>commons-cli</groupId>
  386. <artifactId>commons-cli</artifactId>
  387. <version>${commons-cli.version}</version>
  388. </dependency>
  389. <dependency>
  390. <groupId>org.apache.commons</groupId>
  391. <artifactId>commons-lang3</artifactId>
  392. <version>${lang3.version}</version>
  393. </dependency>
  394. <dependency>
  395. <groupId>com.squareup.okhttp3</groupId>
  396. <artifactId>okhttp</artifactId>
  397. <version>${okhttp.version}</version>
  398. </dependency>
  399. <dependency>
  400. <groupId>org.springframework.boot</groupId>
  401. <artifactId>spring-boot-starter-log4j2</artifactId>
  402. <version>${spring-boot.version}</version>
  403. <exclusions>
  404. <exclusion>
  405. <artifactId>log4j-to-slf4j</artifactId>
  406. <groupId>org.apache.logging.log4j</groupId>
  407. </exclusion>
  408. </exclusions>
  409. </dependency>
  410. <dependency>
  411. <groupId>cn.tr</groupId>
  412. <artifactId>tr-spring-boot-starter-plugin-gen</artifactId>
  413. <version>${revision}</version>
  414. </dependency>
  415. <dependency>
  416. <groupId>org.apache.httpcomponents</groupId>
  417. <artifactId>httpclient</artifactId>
  418. <version>${httpclient.version}</version>
  419. </dependency>
  420. <dependency>
  421. <groupId>com.github.kwaiopen</groupId>
  422. <artifactId>kwai-open-sdk</artifactId>
  423. <version>${kuaishou.version}</version>
  424. </dependency>
  425. <!--mqtt java客户端依赖-->
  426. <dependency>
  427. <groupId>org.springframework.integration</groupId>
  428. <artifactId>spring-integration-mqtt</artifactId>
  429. <version>${spring-integration.version}</version>
  430. </dependency>
  431. <!-- fastJson依赖 -->
  432. <dependency>
  433. <groupId>com.alibaba</groupId>
  434. <artifactId>fastjson</artifactId>
  435. <version>${fastjson.version}</version>
  436. </dependency>
  437. <dependency>
  438. <groupId>cn.dev33</groupId>
  439. <artifactId>sa-token-core</artifactId>
  440. <version>${token-core.version}</version>
  441. <scope>provided</scope>
  442. </dependency>
  443. </dependencies>
  444. </dependencyManagement>
  445. </project>