pom.xml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313
  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>com.xxh.cloud</groupId>
  7. <artifactId>xx-framework-dependencies</artifactId>
  8. <version>1.0.0</version>
  9. <packaging>pom</packaging>
  10. <properties>
  11. <xxh.version>1.0.0</xxh.version>
  12. <spring.boot.version>2.7.5</spring.boot.version>
  13. <jedis.version>4.2.2</jedis.version>
  14. <druid.version>1.2.13</druid.version>
  15. <!-- <druid.version>1.2.8</druid.version>-->
  16. <mybatisplus.version>3.5.2</mybatisplus.version>
  17. <postgresql.version>42.5.4</postgresql.version>
  18. <mysql.version>8.0.28</mysql.version>
  19. <!-- <mysql.version>5.1.47</mysql.version>-->
  20. <sqlserver.version>4.0</sqlserver.version>
  21. <oracle.version>11.2.0.3</oracle.version>
  22. <dameng.version>8.1.1.193</dameng.version>
  23. <commons.lang.version>3.12.0</commons.lang.version>
  24. <commons.fileupload.version>1.4</commons.fileupload.version>
  25. <commons.io.version>2.11.0</commons.io.version>
  26. <commons.codec.version>1.15</commons.codec.version>
  27. <guava.version>20.0</guava.version>
  28. <joda.time.version>2.10.14</joda.time.version>
  29. <hutool.version>5.7.22</hutool.version>
  30. <gson.version>2.9.0</gson.version>
  31. <jsoup.version>1.15.3</jsoup.version>
  32. <knife4j.version>2.0.9</knife4j.version>
  33. <lombok.version>1.18.24</lombok.version>
  34. <docker.plugin.version>1.1.1</docker.plugin.version>
  35. <sa.token.version>1.34.0</sa.token.version>
  36. <fastjson2.version>2.0.26</fastjson2.version>
  37. <fastjson.version>1.2.73</fastjson.version>
  38. <jetty.version>9.4.47.v20220610</jetty.version>
  39. <xxl-job.version>2.4.0</xxl-job.version>
  40. <QLExpress.version>3.3.2</QLExpress.version>
  41. </properties>
  42. <dependencyManagement>
  43. <dependencies>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-dependencies</artifactId>
  47. <version>${spring.boot.version}</version>
  48. <type>pom</type>
  49. <scope>import</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>redis.clients</groupId>
  53. <artifactId>jedis</artifactId>
  54. <version>${jedis.version}</version>
  55. </dependency>
  56. <!-- mysql驱动 -->
  57. <dependency>
  58. <groupId>mysql</groupId>
  59. <artifactId>mysql-connector-java</artifactId>
  60. <version>${mysql.version}</version>
  61. </dependency>
  62. <!-- oracle驱动 -->
  63. <dependency>
  64. <groupId>com.oracle</groupId>
  65. <artifactId>ojdbc6</artifactId>
  66. <version>${oracle.version}</version>
  67. </dependency>
  68. <!-- sqlserver驱动 -->
  69. <dependency>
  70. <groupId>com.microsoft.sqlserver</groupId>
  71. <artifactId>sqljdbc4</artifactId>
  72. <version>${sqlserver.version}</version>
  73. </dependency>
  74. <!-- postgresql驱动 -->
  75. <dependency>
  76. <groupId>org.postgresql</groupId>
  77. <artifactId>postgresql</artifactId>
  78. <version>${postgresql.version}</version>
  79. </dependency>
  80. <!-- 达梦驱动 -->
  81. <dependency>
  82. <groupId>com.dameng</groupId>
  83. <artifactId>DmJdbcDriver18</artifactId>
  84. <version>${dameng.version}</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.alibaba</groupId>
  88. <artifactId>druid-spring-boot-starter</artifactId>
  89. <version>${druid.version}</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>com.baomidou</groupId>
  93. <artifactId>mybatis-plus-boot-starter</artifactId>
  94. <version>${mybatisplus.version}</version>
  95. <exclusions>
  96. <exclusion>
  97. <groupId>com.baomidou</groupId>
  98. <artifactId>mybatis-plus-generator</artifactId>
  99. </exclusion>
  100. </exclusions>
  101. </dependency>
  102. <dependency>
  103. <groupId>com.baomidou</groupId>
  104. <artifactId>mybatis-plus-generator</artifactId>
  105. <version>${mybatisplus.version}</version>
  106. </dependency>
  107. <!-- sa-token -->
  108. <dependency>
  109. <groupId>cn.dev33</groupId>
  110. <artifactId>sa-token-spring-boot-starter</artifactId>
  111. <version>${sa.token.version}</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>cn.dev33</groupId>
  115. <artifactId>sa-token-dao-redis-jackson</artifactId>
  116. <version>${sa.token.version}</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>cn.dev33</groupId>
  120. <artifactId>sa-token-jwt</artifactId>
  121. <version>${sa.token.version}</version>
  122. </dependency>
  123. <!-- commons -->
  124. <dependency>
  125. <groupId>org.apache.commons</groupId>
  126. <artifactId>commons-lang3</artifactId>
  127. <version>${commons.lang.version}</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>commons-fileupload</groupId>
  131. <artifactId>commons-fileupload</artifactId>
  132. <version>${commons.fileupload.version}</version>
  133. </dependency>
  134. <dependency>
  135. <groupId>commons-io</groupId>
  136. <artifactId>commons-io</artifactId>
  137. <version>${commons.io.version}</version>
  138. </dependency>
  139. <dependency>
  140. <groupId>commons-codec</groupId>
  141. <artifactId>commons-codec</artifactId>
  142. <version>${commons.codec.version}</version>
  143. </dependency>
  144. <dependency>
  145. <groupId>com.google.guava</groupId>
  146. <artifactId>guava</artifactId>
  147. <version>${guava.version}</version>
  148. </dependency>
  149. <dependency>
  150. <groupId>joda-time</groupId>
  151. <artifactId>joda-time</artifactId>
  152. <version>${joda.time.version}</version>
  153. </dependency>
  154. <dependency>
  155. <groupId>com.google.code.gson</groupId>
  156. <artifactId>gson</artifactId>
  157. <version>${gson.version}</version>
  158. </dependency>
  159. <dependency>
  160. <groupId>cn.hutool</groupId>
  161. <artifactId>hutool-all</artifactId>
  162. <version>${hutool.version}</version>
  163. </dependency>
  164. <dependency>
  165. <groupId>org.jsoup</groupId>
  166. <artifactId>jsoup</artifactId>
  167. <version>${jsoup.version}</version>
  168. </dependency>
  169. <dependency>
  170. <groupId>com.github.xiaoymin</groupId>
  171. <artifactId>knife4j-spring-boot-starter</artifactId>
  172. <version>${knife4j.version}</version>
  173. </dependency>
  174. <dependency>
  175. <groupId>org.projectlombok</groupId>
  176. <artifactId>lombok</artifactId>
  177. <version>${lombok.version}</version>
  178. </dependency>
  179. <dependency>
  180. <groupId>com.alibaba.fastjson2</groupId>
  181. <artifactId>fastjson2</artifactId>
  182. <version>${fastjson2.version}</version>
  183. </dependency>
  184. <dependency>
  185. <groupId>com.alibaba</groupId>
  186. <artifactId>fastjson</artifactId>
  187. <version>${fastjson.version}</version>
  188. </dependency>
  189. <!-- 3 -->
  190. <dependency>
  191. <groupId>com.xxh.cloud</groupId>
  192. <artifactId>xx-framework-core</artifactId>
  193. <version>${xxh.version}</version>
  194. </dependency>
  195. <dependency>
  196. <groupId>com.xxh.cloud</groupId>
  197. <artifactId>xx-config-web</artifactId>
  198. <version>${xxh.version}</version>
  199. </dependency>
  200. <!-- <dependency>-->
  201. <!-- <groupId>com.xxh.cloud</groupId>-->
  202. <!-- <artifactId>xx-config-script</artifactId>-->
  203. <!-- <version>${xxh.version}</version>-->
  204. <!-- </dependency>-->
  205. <dependency>
  206. <groupId>com.xxh.cloud</groupId>
  207. <artifactId>xx-config-framework</artifactId>
  208. <version>${xxh.version}</version>
  209. </dependency>
  210. <dependency>
  211. <groupId>com.xxh.cloud</groupId>
  212. <artifactId>xx-config-elasticsearch</artifactId>
  213. <version>${xxh.version}</version>
  214. </dependency>
  215. <dependency>
  216. <groupId>com.xxh.cloud</groupId>
  217. <artifactId>xx-config-mybatisplus</artifactId>
  218. <version>${xxh.version}</version>
  219. </dependency>
  220. <dependency>
  221. <groupId>com.xxh.cloud</groupId>
  222. <artifactId>xx-config-kafka</artifactId>
  223. <version>${xxh.version}</version>
  224. </dependency>
  225. <dependency>
  226. <groupId>com.xxh.cloud</groupId>
  227. <artifactId>xx-config-activemq</artifactId>
  228. <version>${xxh.version}</version>
  229. </dependency>
  230. <dependency>
  231. <groupId>org.dromara.easy-es</groupId>
  232. <artifactId>easy-es-boot-starter</artifactId>
  233. <version>2.0.0-beta2</version>
  234. </dependency>
  235. <dependency>
  236. <groupId>com.xuxueli</groupId>
  237. <artifactId>xxl-job-core</artifactId>
  238. <version>${xxl-job.version}</version>
  239. </dependency>
  240. <dependency>
  241. <groupId>com.alibaba</groupId>
  242. <artifactId>QLExpress</artifactId>
  243. <version>${QLExpress.version}</version>
  244. </dependency>
  245. <dependency>
  246. <groupId>com.baomidou</groupId>
  247. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  248. <version>3.5.1</version>
  249. </dependency>
  250. </dependencies>
  251. </dependencyManagement>
  252. </project>