pom.xml 13 KB

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