pom.xml 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377
  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-store-platform</module>
  20. <module>alien-lawyer</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>com.alibaba</groupId>
  75. <artifactId>fastjson</artifactId>
  76. <version>2.0.7</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>com.aliyun</groupId>
  80. <artifactId>dysmsapi20170525</artifactId>
  81. <version>3.1.0</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>com.alipay.sdk</groupId>
  85. <artifactId>alipay-sdk-java</artifactId>
  86. <version>4.40.8.ALL</version>
  87. </dependency>
  88. <!--Alibaba End-->
  89. <!--Apache Start-->
  90. <dependency>
  91. <groupId>commons-io</groupId>
  92. <artifactId>commons-io</artifactId>
  93. <version>2.11.0</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.apache.commons</groupId>
  97. <artifactId>commons-lang3</artifactId>
  98. <version>3.9</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>commons-codec</groupId>
  102. <artifactId>commons-codec</artifactId>
  103. <version>1.10</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.apache.httpcomponents</groupId>
  107. <artifactId>httpclient</artifactId>
  108. <version>4.5.11</version>
  109. </dependency>
  110. <!--redis连接池需要此依赖-->
  111. <dependency>
  112. <groupId>org.apache.commons</groupId>
  113. <artifactId>commons-pool2</artifactId>
  114. <version>2.7.0</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>commons-fileupload</groupId>
  118. <artifactId>commons-fileupload</artifactId>
  119. <version>1.5</version>
  120. </dependency>
  121. <!--打印, pdf转换成img-->
  122. <dependency>
  123. <groupId>org.apache.pdfbox</groupId>
  124. <artifactId>pdfbox</artifactId>
  125. <version>2.0.8</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>org.apache.poi</groupId>
  129. <artifactId>poi</artifactId>
  130. <version>5.2.3</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>org.apache.poi</groupId>
  134. <artifactId>poi-ooxml</artifactId>
  135. <version>5.2.3</version>
  136. </dependency>
  137. <!--Apache End-->
  138. <!--Swagger Start-->
  139. <dependency>
  140. <groupId>io.springfox</groupId>
  141. <artifactId>springfox-swagger2</artifactId>
  142. <version>2.9.2</version>
  143. <exclusions>
  144. <exclusion>
  145. <artifactId>swagger-annotations</artifactId>
  146. <groupId>io.swagger</groupId>
  147. </exclusion>
  148. <exclusion>
  149. <artifactId>swagger-models</artifactId>
  150. <groupId>io.swagger</groupId>
  151. </exclusion>
  152. </exclusions>
  153. </dependency>
  154. <dependency>
  155. <groupId>io.swagger</groupId>
  156. <artifactId>swagger-annotations</artifactId>
  157. <version>1.5.22</version>
  158. </dependency>
  159. <dependency>
  160. <groupId>io.swagger</groupId>
  161. <artifactId>swagger-models</artifactId>
  162. <version>1.5.22</version>
  163. </dependency>
  164. <dependency>
  165. <groupId>io.springfox</groupId>
  166. <artifactId>springfox-swagger-ui</artifactId>
  167. <version>2.9.2</version>
  168. </dependency>
  169. <dependency>
  170. <groupId>com.github.xiaoymin</groupId>
  171. <artifactId>swagger-bootstrap-ui</artifactId>
  172. <version>1.9.6</version>
  173. </dependency>
  174. <!--Swagger End-->
  175. <!-- MyBatis-Plus Start-->
  176. <dependency>
  177. <groupId>com.baomidou</groupId>
  178. <artifactId>mybatis-plus-boot-starter</artifactId>
  179. <version>${mybatisplus.version}</version>
  180. </dependency>
  181. <!-- mybatis-plus代码生成器 -->
  182. <dependency>
  183. <groupId>com.baomidou</groupId>
  184. <artifactId>mybatis-plus-generator</artifactId>
  185. <version>${mybatisplus.version}</version>
  186. <exclusions>
  187. <exclusion>
  188. <artifactId>jsqlparser</artifactId>
  189. <groupId>com.github.jsqlparser</groupId>
  190. </exclusion>
  191. <exclusion>
  192. <artifactId>mybatis</artifactId>
  193. <groupId>org.mybatis</groupId>
  194. </exclusion>
  195. <exclusion>
  196. <artifactId>mybatis-spring</artifactId>
  197. <groupId>org.mybatis</groupId>
  198. </exclusion>
  199. </exclusions>
  200. </dependency>
  201. <dependency>
  202. <groupId>com.baomidou</groupId>
  203. <artifactId>mybatis-plus-annotation</artifactId>
  204. <version>${mybatisplus.version}</version>
  205. </dependency>
  206. <dependency>
  207. <groupId>com.baomidou</groupId>
  208. <artifactId>mybatis-plus-extension</artifactId>
  209. <version>${mybatisplus.version}</version>
  210. </dependency>
  211. <dependency>
  212. <groupId>com.baomidou</groupId>
  213. <artifactId>mybatis-plus-core</artifactId>
  214. <version>${mybatisplus.version}</version>
  215. <scope>compile</scope>
  216. </dependency>
  217. <!-- mybatisPlus Freemarker 模版引擎 -->
  218. <dependency>
  219. <groupId>org.freemarker</groupId>
  220. <artifactId>freemarker</artifactId>
  221. <version>2.3.29</version>
  222. </dependency>
  223. <!-- MyBatis-Plus End-->
  224. <!--Databases Start-->
  225. <dependency>
  226. <groupId>mysql</groupId>
  227. <artifactId>mysql-connector-java</artifactId>
  228. <scope>runtime</scope>
  229. <version>8.0.18</version>
  230. </dependency>
  231. <!-- sqlite -->
  232. <dependency>
  233. <groupId>org.xerial</groupId>
  234. <artifactId>sqlite-jdbc</artifactId>
  235. <version>3.30.1</version>
  236. </dependency>
  237. <!--Databases End-->
  238. <!--Other Start-->
  239. <dependency>
  240. <groupId>com.fasterxml.jackson.core</groupId>
  241. <artifactId>jackson-core</artifactId>
  242. <version>2.13.0</version> <!-- 可以根据需要调整版本 -->
  243. </dependency>
  244. <dependency>
  245. <groupId>com.fasterxml.jackson.core</groupId>
  246. <artifactId>jackson-databind</artifactId>
  247. <version>2.13.0</version> <!-- 可以根据需要调整版本 -->
  248. </dependency>
  249. <dependency>
  250. <groupId>com.fasterxml.jackson.core</groupId>
  251. <artifactId>jackson-annotations</artifactId>
  252. <version>2.13.0</version> <!-- 可以根据需要调整版本 -->
  253. </dependency>
  254. <dependency>
  255. <groupId>org.projectlombok</groupId>
  256. <artifactId>lombok</artifactId>
  257. <version>1.18.32</version>
  258. </dependency>
  259. <dependency>
  260. <groupId>com.github.pagehelper</groupId>
  261. <artifactId>pagehelper-spring-boot-starter</artifactId>
  262. <version>1.3.1</version>
  263. <exclusions>
  264. <exclusion>
  265. <groupId>org.mybatis</groupId>
  266. <artifactId>mybatis</artifactId>
  267. </exclusion>
  268. </exclusions>
  269. </dependency>
  270. <dependency>
  271. <groupId>dom4j</groupId>
  272. <artifactId>dom4j</artifactId>
  273. <version>1.6.1</version>
  274. </dependency>
  275. <!--解析url-->
  276. <dependency>
  277. <groupId>io.github.url-detector</groupId>
  278. <artifactId>url-detector</artifactId>
  279. <version>0.1.23</version>
  280. </dependency>
  281. <!--JaudioTagger获取音频信息-->
  282. <dependency>
  283. <groupId>org</groupId>
  284. <artifactId>jaudiotagger</artifactId>
  285. <version>2.0.3</version>
  286. </dependency>
  287. <dependency>
  288. <groupId>com.xuxueli</groupId>
  289. <artifactId>xxl-job-core</artifactId>
  290. <version>2.4.0</version>
  291. </dependency>
  292. <!--农历转公历-->
  293. <dependency>
  294. <groupId>cn.6tail</groupId>
  295. <artifactId>lunar</artifactId>
  296. <version>1.3.15</version>
  297. </dependency>
  298. <dependency>
  299. <groupId>cn.6tail</groupId>
  300. <artifactId>tyme4j</artifactId>
  301. <version>1.1.6</version>
  302. </dependency>
  303. <dependency>
  304. <groupId>com.netease.yidun</groupId>
  305. <artifactId>yidun-java-sdk</artifactId>
  306. <version>1.4.11</version>
  307. </dependency>
  308. <dependency>
  309. <groupId>com.auth0</groupId>
  310. <artifactId>java-jwt</artifactId>
  311. <version>3.4.0</version>
  312. </dependency>
  313. <!--Other End-->
  314. </dependencies>
  315. </dependencyManagement>
  316. <build>
  317. <plugins>
  318. <plugin>
  319. <groupId>org.springframework.boot</groupId>
  320. <artifactId>spring-boot-maven-plugin</artifactId>
  321. <version>2.3.2.RELEASE</version>
  322. </plugin>
  323. </plugins>
  324. </build>
  325. </project>