pom.xml 13 KB

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