pom.xml 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  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>raising</artifactId>
  7. <groupId>com.raising</groupId>
  8. <version>3.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>raising-framework</artifactId>
  12. <description>
  13. framework框架核心
  14. </description>
  15. <dependencies>
  16. <!-- SpringBoot 拦截器 -->
  17. <dependency>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-starter-aop</artifactId>
  20. </dependency>
  21. <!-- 阿里数据库连接池 -->
  22. <dependency>
  23. <groupId>com.alibaba</groupId>
  24. <artifactId>druid-spring-boot-starter</artifactId>
  25. </dependency>
  26. <!-- 获取系统信息 -->
  27. <dependency>
  28. <groupId>com.github.oshi</groupId>
  29. <artifactId>oshi-core</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>net.java.dev.jna</groupId>
  33. <artifactId>jna</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>net.java.dev.jna</groupId>
  37. <artifactId>jna-platform</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.baomidou</groupId>
  41. <artifactId>mybatis-plus-boot-starter</artifactId>
  42. <version>${mybatisplus.version}</version>
  43. <exclusions>
  44. <exclusion>
  45. <groupId>com.baomidou</groupId>
  46. <artifactId>mybatis-plus-generator</artifactId>
  47. </exclusion>
  48. </exclusions>
  49. </dependency>
  50. <!--Linq表达式-->
  51. <dependency>
  52. <groupId>com.bestvike</groupId>
  53. <artifactId>linq</artifactId>
  54. <version>${bestvikelinq.version}</version>
  55. </dependency>
  56. <!--Hutool工具包-->
  57. <dependency>
  58. <groupId>cn.hutool</groupId>
  59. <artifactId>hutool-all</artifactId>
  60. <version>${hutool.version}</version>
  61. </dependency>
  62. <!-- 腾讯云 SMS -->
  63. <dependency>
  64. <groupId>com.github.qcloudsms</groupId>
  65. <artifactId>qcloudsms</artifactId>
  66. <version>${qcloudsms.version}</version>
  67. </dependency>
  68. <!-- 阿里云 SMS -->
  69. <dependency>
  70. <groupId>com.aliyun</groupId>
  71. <artifactId>aliyun-java-sdk-core</artifactId>
  72. <version>${aliyun.java.sdk.version}</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.github.javen205</groupId>
  76. <artifactId>IJPay-All</artifactId>
  77. <version>${ijpay.version}</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.alipay.sdk</groupId>
  81. <artifactId>alipay-sdk-java</artifactId>
  82. <version>${alipay.version}</version>
  83. <exclusions>
  84. <exclusion>
  85. <artifactId>fastjson</artifactId>
  86. <groupId>com.alibaba</groupId>
  87. </exclusion>
  88. </exclusions>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.projectlombok</groupId>
  92. <artifactId>lombok</artifactId>
  93. <version>${projectlombok.version}</version>
  94. <optional>true</optional>
  95. </dependency>
  96. <!--weixin-java-common-->
  97. <dependency>
  98. <groupId>com.github.binarywang</groupId>
  99. <artifactId>weixin-java-common</artifactId>
  100. <version>${weixin-java.version}</version>
  101. </dependency>
  102. <!--weixin-java-admin-->
  103. <dependency>
  104. <groupId>com.github.binarywang</groupId>
  105. <artifactId>weixin-java-mp</artifactId>
  106. <version>${weixin-java.version}</version>
  107. </dependency>
  108. <!--weixin-java-open-->
  109. <dependency>
  110. <groupId>com.github.binarywang</groupId>
  111. <artifactId>weixin-java-open</artifactId>
  112. <version>${weixin-java.version}</version>
  113. </dependency>
  114. <!--weixin-java-miniapp-->
  115. <dependency>
  116. <groupId>com.github.binarywang</groupId>
  117. <artifactId>weixin-java-miniapp</artifactId>
  118. <version>${weixin-java.version}</version>
  119. </dependency>
  120. <!--weixin-java-pay-->
  121. <dependency>
  122. <groupId>com.github.binarywang</groupId>
  123. <artifactId>weixin-java-pay</artifactId>
  124. <version>${weixin-java.version}</version>
  125. </dependency>
  126. <!-- 框架通用工具包-->
  127. <dependency>
  128. <groupId>com.raising</groupId>
  129. <artifactId>raising-common</artifactId>
  130. <version>${project.version}</version>
  131. </dependency>
  132. <!-- 框架通用实体包-->
  133. <dependency>
  134. <groupId>com.raising</groupId>
  135. <artifactId>raising-core-data</artifactId>
  136. <version>${project.version}</version>
  137. </dependency>
  138. <!-- Sa-Token 权限认证, 在线文档:http://sa-token.dev33.cn/ -->
  139. <dependency>
  140. <groupId>cn.dev33</groupId>
  141. <artifactId>sa-token-spring-boot-starter</artifactId>
  142. <version>${sa-token-version}</version>
  143. </dependency>
  144. <!-- Sa-Token 整合 Redis (使用jackson序列化方式) -->
  145. <dependency>
  146. <groupId>cn.dev33</groupId>
  147. <artifactId>sa-token-dao-redis-jackson</artifactId>
  148. <version>${sa-token-version}</version>
  149. </dependency>
  150. <!--TTL-->
  151. <dependency>
  152. <groupId>com.alibaba</groupId>
  153. <artifactId>transmittable-thread-local</artifactId>
  154. <version>${ttl.version}</version>
  155. </dependency>
  156. <!-- BeetlSQL的目标是提供开发高效,维护高效,运行高效的数据库访问框架,
  157. Git仓库: https://gitee.com/xiandafu/beetlsql
  158. 在线文档:https://www.kancloud.cn/xiandafu/beetlsql3_guide/1960060
  159. -->
  160. <dependency>
  161. <groupId>com.ibeetl</groupId>
  162. <artifactId>sql-springboot-starter</artifactId>
  163. <version>${beetlsql.version}</version>
  164. </dependency>
  165. <!--必须使用0.9以上的版本-->
  166. <dependency>
  167. <groupId>com.github.jsqlparser</groupId>
  168. <artifactId>jsqlparser</artifactId>
  169. <version>${jsqlparser.version}</version>
  170. </dependency>
  171. <!--阿里oss-->
  172. <dependency>
  173. <groupId>com.aliyun.oss</groupId>
  174. <artifactId>aliyun-sdk-oss</artifactId>
  175. <version>${aliyun-sdk-oss.version}</version>
  176. </dependency>
  177. <!--七牛云-->
  178. <dependency>
  179. <groupId>com.qiniu</groupId>
  180. <artifactId>qiniu-java-sdk</artifactId>
  181. <version>${qiniu-java-sdk.version}</version>
  182. </dependency>
  183. <!--腾讯cos-->
  184. <dependency>
  185. <groupId>com.qcloud</groupId>
  186. <artifactId>cos_api</artifactId>
  187. <version>${qcloud-cos.version}</version>
  188. </dependency>
  189. <!--minio-->
  190. <dependency>
  191. <groupId>io.minio</groupId>
  192. <artifactId>minio</artifactId>
  193. <version>${minio.version}</version>
  194. </dependency>
  195. <!-- http://repo1.maven.org/maven2/com/xuxueli/xxl-job-core/ -->
  196. <dependency>
  197. <groupId>com.xuxueli</groupId>
  198. <artifactId>xxl-job-core</artifactId>
  199. <version>${xxljob.version}</version>
  200. </dependency>
  201. <!-- magic-api 接口平台工具 -->
  202. <!-- 文档: https://www.ssssssss.org/magic-api/pages/quick/start/ -->
  203. <dependency>
  204. <groupId>org.ssssssss</groupId>
  205. <artifactId>magic-api-spring-boot-starter</artifactId>
  206. <version>${magic.api.version}</version>
  207. </dependency>
  208. <!-- Magic-API Redis-插件 -->
  209. <dependency>
  210. <groupId>org.ssssssss</groupId>
  211. <artifactId>magic-api-plugin-redis</artifactId>
  212. <version>${magic.api.version}</version>
  213. </dependency>
  214. <!-- Magic-API Swagger-插件 -->
  215. <dependency>
  216. <groupId>org.ssssssss</groupId>
  217. <artifactId>magic-api-plugin-swagger</artifactId>
  218. <version>${magic.api.version}</version>
  219. </dependency>
  220. </dependencies>
  221. </project>