pom.xml 13 KB

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