pom.xml 13 KB

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