pom.xml 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>shop.alien</groupId>
  6. <artifactId>alien-cloud</artifactId>
  7. <version>1.0.0</version>
  8. <name>alien-cloud</name>
  9. <description>alien-cloud</description>
  10. <modules>
  11. <module>alien-api</module>
  12. <module>alien-config</module>
  13. <module>alien-entity</module>
  14. <module>alien-store</module>
  15. <module>alien-gateway</module>
  16. <module>alien-util</module>
  17. <module>alien-job</module>
  18. <module>alien-second</module>
  19. <module>alien-lawyer</module>
  20. <module>alien-store-platform</module>
  21. </modules>
  22. <!--pom工程作用:1、管理版本;2、聚合工程-->
  23. <packaging>pom</packaging>
  24. <properties>
  25. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  26. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  27. <spring-boot.version>2.3.2.RELEASE</spring-boot.version>
  28. <spring-cloud-nacos.version>2.2.5.RELEASE</spring-cloud-nacos.version>
  29. <spring.cloud.version>Hoxton.SR1</spring.cloud.version>
  30. <mybatisplus.version>3.2.0</mybatisplus.version>
  31. </properties>
  32. <dependencyManagement>
  33. <dependencies>
  34. <!--Spring Start-->
  35. <dependency>
  36. <groupId>org.springframework.cloud</groupId>
  37. <artifactId>spring-cloud-dependencies</artifactId>
  38. <version>${spring.cloud.version}</version>
  39. <type>pom</type>
  40. <scope>import</scope>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-dependencies</artifactId>
  45. <version>${spring-boot.version}</version>
  46. <type>pom</type>
  47. <scope>import</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>io.github.openfeign</groupId>
  51. <artifactId>feign-okhttp</artifactId>
  52. <version>13.3</version>
  53. </dependency>
  54. <!--SpringBoot End-->
  55. <!--Druid Start-->
  56. <dependency>
  57. <groupId>com.alibaba</groupId>
  58. <artifactId>druid-spring-boot-starter</artifactId>
  59. <version>1.2.8</version>
  60. </dependency>
  61. <!--Druid End-->
  62. <!--Alibaba Start-->
  63. <dependency>
  64. <groupId>com.alibaba.cloud</groupId>
  65. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  66. <version>${spring-cloud-nacos.version}</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.alibaba.cloud</groupId>
  70. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  71. <version>${spring-cloud-nacos.version}</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.redisson</groupId>
  75. <artifactId>redisson-spring-boot-starter</artifactId>
  76. <version>3.17.7</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>com.alibaba</groupId>
  80. <artifactId>fastjson</artifactId>
  81. <version>2.0.7</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>com.aliyun</groupId>
  85. <artifactId>dysmsapi20170525</artifactId>
  86. <version>3.1.0</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>com.alipay.sdk</groupId>
  90. <artifactId>alipay-sdk-java</artifactId>
  91. <version>4.40.8.ALL</version>
  92. </dependency>
  93. <!--Alibaba End-->
  94. <!--Apache Start-->
  95. <dependency>
  96. <groupId>commons-io</groupId>
  97. <artifactId>commons-io</artifactId>
  98. <version>2.11.0</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.apache.commons</groupId>
  102. <artifactId>commons-lang3</artifactId>
  103. <version>3.9</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>commons-codec</groupId>
  107. <artifactId>commons-codec</artifactId>
  108. <version>1.10</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.apache.httpcomponents</groupId>
  112. <artifactId>httpclient</artifactId>
  113. <version>4.5.11</version>
  114. </dependency>
  115. <!--redis连接池需要此依赖-->
  116. <dependency>
  117. <groupId>org.apache.commons</groupId>
  118. <artifactId>commons-pool2</artifactId>
  119. <version>2.7.0</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>commons-fileupload</groupId>
  123. <artifactId>commons-fileupload</artifactId>
  124. <version>1.5</version>
  125. </dependency>
  126. <!--打印, pdf转换成img-->
  127. <dependency>
  128. <groupId>org.apache.pdfbox</groupId>
  129. <artifactId>pdfbox</artifactId>
  130. <version>2.0.8</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>org.apache.poi</groupId>
  134. <artifactId>poi</artifactId>
  135. <version>5.2.3</version>
  136. </dependency>
  137. <dependency>
  138. <groupId>org.apache.poi</groupId>
  139. <artifactId>poi-ooxml</artifactId>
  140. <version>5.2.3</version>
  141. </dependency>
  142. <!--Apache End-->
  143. <!--Swagger Start-->
  144. <dependency>
  145. <groupId>io.springfox</groupId>
  146. <artifactId>springfox-swagger2</artifactId>
  147. <version>2.9.2</version>
  148. <exclusions>
  149. <exclusion>
  150. <artifactId>swagger-annotations</artifactId>
  151. <groupId>io.swagger</groupId>
  152. </exclusion>
  153. <exclusion>
  154. <artifactId>swagger-models</artifactId>
  155. <groupId>io.swagger</groupId>
  156. </exclusion>
  157. </exclusions>
  158. </dependency>
  159. <dependency>
  160. <groupId>io.swagger</groupId>
  161. <artifactId>swagger-annotations</artifactId>
  162. <version>1.5.22</version>
  163. </dependency>
  164. <dependency>
  165. <groupId>io.swagger</groupId>
  166. <artifactId>swagger-models</artifactId>
  167. <version>1.5.22</version>
  168. </dependency>
  169. <dependency>
  170. <groupId>io.springfox</groupId>
  171. <artifactId>springfox-swagger-ui</artifactId>
  172. <version>2.9.2</version>
  173. </dependency>
  174. <dependency>
  175. <groupId>com.github.xiaoymin</groupId>
  176. <artifactId>swagger-bootstrap-ui</artifactId>
  177. <version>1.9.6</version>
  178. </dependency>
  179. <!--Swagger End-->
  180. <!-- MyBatis-Plus Start-->
  181. <dependency>
  182. <groupId>com.baomidou</groupId>
  183. <artifactId>mybatis-plus-boot-starter</artifactId>
  184. <version>${mybatisplus.version}</version>
  185. </dependency>
  186. <!-- mybatis-plus代码生成器 -->
  187. <dependency>
  188. <groupId>com.baomidou</groupId>
  189. <artifactId>mybatis-plus-generator</artifactId>
  190. <version>${mybatisplus.version}</version>
  191. <exclusions>
  192. <exclusion>
  193. <artifactId>jsqlparser</artifactId>
  194. <groupId>com.github.jsqlparser</groupId>
  195. </exclusion>
  196. <exclusion>
  197. <artifactId>mybatis</artifactId>
  198. <groupId>org.mybatis</groupId>
  199. </exclusion>
  200. <exclusion>
  201. <artifactId>mybatis-spring</artifactId>
  202. <groupId>org.mybatis</groupId>
  203. </exclusion>
  204. </exclusions>
  205. </dependency>
  206. <dependency>
  207. <groupId>com.baomidou</groupId>
  208. <artifactId>mybatis-plus-annotation</artifactId>
  209. <version>${mybatisplus.version}</version>
  210. </dependency>
  211. <dependency>
  212. <groupId>com.baomidou</groupId>
  213. <artifactId>mybatis-plus-extension</artifactId>
  214. <version>${mybatisplus.version}</version>
  215. </dependency>
  216. <dependency>
  217. <groupId>com.baomidou</groupId>
  218. <artifactId>mybatis-plus-core</artifactId>
  219. <version>${mybatisplus.version}</version>
  220. <scope>compile</scope>
  221. </dependency>
  222. <!-- mybatisPlus Freemarker 模版引擎 -->
  223. <dependency>
  224. <groupId>org.freemarker</groupId>
  225. <artifactId>freemarker</artifactId>
  226. <version>2.3.29</version>
  227. </dependency>
  228. <!-- MyBatis-Plus End-->
  229. <!--Databases Start-->
  230. <dependency>
  231. <groupId>mysql</groupId>
  232. <artifactId>mysql-connector-java</artifactId>
  233. <scope>runtime</scope>
  234. <version>8.0.18</version>
  235. </dependency>
  236. <!-- sqlite -->
  237. <dependency>
  238. <groupId>org.xerial</groupId>
  239. <artifactId>sqlite-jdbc</artifactId>
  240. <version>3.30.1</version>
  241. </dependency>
  242. <!--Databases End-->
  243. <!--Other Start-->
  244. <dependency>
  245. <groupId>com.fasterxml.jackson.core</groupId>
  246. <artifactId>jackson-core</artifactId>
  247. <version>2.13.0</version> <!-- 可以根据需要调整版本 -->
  248. </dependency>
  249. <dependency>
  250. <groupId>com.fasterxml.jackson.core</groupId>
  251. <artifactId>jackson-databind</artifactId>
  252. <version>2.13.0</version> <!-- 可以根据需要调整版本 -->
  253. </dependency>
  254. <dependency>
  255. <groupId>com.fasterxml.jackson.core</groupId>
  256. <artifactId>jackson-annotations</artifactId>
  257. <version>2.13.0</version> <!-- 可以根据需要调整版本 -->
  258. </dependency>
  259. <dependency>
  260. <groupId>org.projectlombok</groupId>
  261. <artifactId>lombok</artifactId>
  262. <version>1.18.32</version>
  263. </dependency>
  264. <dependency>
  265. <groupId>com.github.pagehelper</groupId>
  266. <artifactId>pagehelper-spring-boot-starter</artifactId>
  267. <version>1.3.1</version>
  268. <exclusions>
  269. <exclusion>
  270. <groupId>org.mybatis</groupId>
  271. <artifactId>mybatis</artifactId>
  272. </exclusion>
  273. </exclusions>
  274. </dependency>
  275. <dependency>
  276. <groupId>dom4j</groupId>
  277. <artifactId>dom4j</artifactId>
  278. <version>1.6.1</version>
  279. </dependency>
  280. <!--解析url-->
  281. <dependency>
  282. <groupId>io.github.url-detector</groupId>
  283. <artifactId>url-detector</artifactId>
  284. <version>0.1.23</version>
  285. </dependency>
  286. <!--JaudioTagger获取音频信息-->
  287. <dependency>
  288. <groupId>org</groupId>
  289. <artifactId>jaudiotagger</artifactId>
  290. <version>2.0.3</version>
  291. </dependency>
  292. <dependency>
  293. <groupId>com.xuxueli</groupId>
  294. <artifactId>xxl-job-core</artifactId>
  295. <version>2.4.0</version>
  296. </dependency>
  297. <!--农历转公历-->
  298. <dependency>
  299. <groupId>cn.6tail</groupId>
  300. <artifactId>lunar</artifactId>
  301. <version>1.3.15</version>
  302. </dependency>
  303. <dependency>
  304. <groupId>cn.6tail</groupId>
  305. <artifactId>tyme4j</artifactId>
  306. <version>1.1.6</version>
  307. </dependency>
  308. <dependency>
  309. <groupId>com.netease.yidun</groupId>
  310. <artifactId>yidun-java-sdk</artifactId>
  311. <version>1.4.11</version>
  312. </dependency>
  313. <dependency>
  314. <groupId>com.auth0</groupId>
  315. <artifactId>java-jwt</artifactId>
  316. <version>3.4.0</version>
  317. </dependency>
  318. <!-- 验证码 -->
  319. <dependency>
  320. <groupId>pro.fessional</groupId>
  321. <artifactId>kaptcha</artifactId>
  322. <version>2.3.3</version>
  323. </dependency>
  324. <dependency>
  325. <groupId>cn.hutool</groupId>
  326. <artifactId>hutool-captcha</artifactId>
  327. <version>5.8.18</version>
  328. </dependency>
  329. <!--Other End-->
  330. </dependencies>
  331. </dependencyManagement>
  332. <build>
  333. <plugins>
  334. <plugin>
  335. <groupId>org.springframework.boot</groupId>
  336. <artifactId>spring-boot-maven-plugin</artifactId>
  337. <version>2.3.2.RELEASE</version>
  338. </plugin>
  339. </plugins>
  340. </build>
  341. </project>