pom.xml 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  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>com.qmth.eds</groupId>
  6. <artifactId>eds-service</artifactId>
  7. <version>1.0.3</version>
  8. <packaging>pom</packaging>
  9. <modules>
  10. <module>eds-common</module>
  11. <module>eds-whu</module>
  12. <module>eds-cdut</module>
  13. </modules>
  14. <properties>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. <maven.compiler.source>1.8</maven.compiler.source>
  17. <maven.compiler.target>1.8</maven.compiler.target>
  18. <qmth.boot.version>1.0.3</qmth.boot.version>
  19. <java.version>1.8</java.version>
  20. <swagger2.version>2.9.2</swagger2.version>
  21. <fastjson.version>1.2.68</fastjson.version>
  22. <fileupload.version>1.4</fileupload.version>
  23. <aliyun.version>3.8.1</aliyun.version>
  24. <guava.version>27.1-jre</guava.version>
  25. <spring-boot.version>2.3.7.RELEASE</spring-boot.version>
  26. <!-- <spring-boot.version>2.6.7</spring-boot.version>-->
  27. <gson.version>2.8.6</gson.version>
  28. <commons.version>3.10</commons.version>
  29. <commons.codec.version>1.15</commons.codec.version>
  30. <commons-io.version>2.6</commons-io.version>
  31. <jackson.version>2.11.0</jackson.version>
  32. <swagger2-bootstrap.version>1.9.6</swagger2-bootstrap.version>
  33. <version-plugin.version>2.8.1</version-plugin.version>
  34. <junit.version>4.13</junit.version>
  35. <jetbrains.version>13.0</jetbrains.version>
  36. <hutool.version>5.0.6</hutool.version>
  37. <commons-text.version>1.9</commons-text.version>
  38. <httpclient.version>4.5.12</httpclient.version>
  39. <netty-all.version>4.1.49.Final</netty-all.version>
  40. <easyexcel.version>3.0.5</easyexcel.version>
  41. <bcprov.version>1.52</bcprov.version>
  42. <dysmsapi.version>1.1.0</dysmsapi.version>
  43. </properties>
  44. <dependencyManagement>
  45. <dependencies>
  46. <dependency>
  47. <groupId>com.qmth.eds.common</groupId>
  48. <artifactId>eds-common</artifactId>
  49. <version>${project.version}</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.qmth.eds.whu</groupId>
  53. <artifactId>eds-whu</artifactId>
  54. <version>${project.version}</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.qmth.boot</groupId>
  58. <artifactId>starter-api</artifactId>
  59. <version>${qmth.boot.version}</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.qmth.boot</groupId>
  63. <artifactId>core-uid</artifactId>
  64. <version>${qmth.boot.version}</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.qmth.boot</groupId>
  68. <artifactId>core-cache</artifactId>
  69. <version>${qmth.boot.version}</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.qmth.boot</groupId>
  73. <artifactId>core-concurrent</artifactId>
  74. <version>${qmth.boot.version}</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>com.qmth.boot</groupId>
  78. <artifactId>core-fss</artifactId>
  79. <version>${qmth.boot.version}</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.qmth.boot</groupId>
  83. <artifactId>data-redis</artifactId>
  84. <version>${qmth.boot.version}</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.qmth.boot</groupId>
  88. <artifactId>data-mybatis-plus</artifactId>
  89. <version>${qmth.boot.version}</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>com.qmth.boot</groupId>
  93. <artifactId>core-solar</artifactId>
  94. <version>${qmth.boot.version}</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>io.springfox</groupId>
  98. <artifactId>springfox-swagger-ui</artifactId>
  99. <version>${swagger2.version}</version>
  100. </dependency>
  101. <!-- <dependency>-->
  102. <!-- <groupId>com.github.xiaoymin</groupId>-->
  103. <!-- <artifactId>swagger-bootstrap-ui</artifactId>-->
  104. <!-- <version>${swagger2-bootstrap.version}</version>-->
  105. <!-- </dependency>-->
  106. <dependency>
  107. <groupId>io.springfox</groupId>
  108. <artifactId>springfox-swagger2</artifactId>
  109. <version>${swagger2.version}</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>org.apache.commons</groupId>
  113. <artifactId>commons-lang3</artifactId>
  114. <version>${commons.version}</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>commons-codec</groupId>
  118. <artifactId>commons-codec</artifactId>
  119. <version>${commons.codec.version}</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>com.google.code.gson</groupId>
  123. <artifactId>gson</artifactId>
  124. <version>${gson.version}</version>
  125. </dependency>
  126. <dependency>
  127. <groupId>com.google.guava</groupId>
  128. <artifactId>guava</artifactId>
  129. <version>${guava.version}</version>
  130. </dependency>
  131. <dependency>
  132. <groupId>commons-fileupload</groupId>
  133. <artifactId>commons-fileupload</artifactId>
  134. <version>${fileupload.version}</version>
  135. </dependency>
  136. <dependency>
  137. <groupId>com.aliyun.oss</groupId>
  138. <artifactId>aliyun-sdk-oss</artifactId>
  139. <version>${aliyun.version}</version>
  140. </dependency>
  141. <dependency>
  142. <groupId>com.alibaba</groupId>
  143. <artifactId>fastjson</artifactId>
  144. <version>${fastjson.version}</version>
  145. </dependency>
  146. <dependency>
  147. <groupId>com.fasterxml.jackson.core</groupId>
  148. <artifactId>jackson-core</artifactId>
  149. <version>${jackson.version}</version>
  150. </dependency>
  151. <dependency>
  152. <groupId>com.fasterxml.jackson.core</groupId>
  153. <artifactId>jackson-annotations</artifactId>
  154. <version>${jackson.version}</version>
  155. </dependency>
  156. <dependency>
  157. <groupId>com.fasterxml.jackson.core</groupId>
  158. <artifactId>jackson-databind</artifactId>
  159. <version>${jackson.version}</version>
  160. </dependency>
  161. <dependency>
  162. <groupId>commons-io</groupId>
  163. <artifactId>commons-io</artifactId>
  164. <version>${commons-io.version}</version>
  165. </dependency>
  166. <!--quartz-->
  167. <dependency>
  168. <groupId>org.springframework.boot</groupId>
  169. <artifactId>spring-boot-starter-quartz</artifactId>
  170. <version>${spring-boot.version}</version>
  171. </dependency>
  172. <dependency>
  173. <groupId>org.jetbrains</groupId>
  174. <artifactId>annotations</artifactId>
  175. <version>${jetbrains.version}</version>
  176. <scope>compile</scope>
  177. </dependency>
  178. <dependency>
  179. <groupId>junit</groupId>
  180. <artifactId>junit</artifactId>
  181. <version>${junit.version}</version>
  182. </dependency>
  183. <dependency>
  184. <groupId>org.apache.httpcomponents</groupId>
  185. <artifactId>httpclient</artifactId>
  186. <version>${httpclient.version}</version>
  187. </dependency>
  188. <dependency>
  189. <groupId>org.apache.commons</groupId>
  190. <artifactId>commons-text</artifactId>
  191. <version>${commons-text.version}</version>
  192. </dependency>
  193. <dependency>
  194. <groupId>cn.hutool</groupId>
  195. <artifactId>hutool-all</artifactId>
  196. <version>${hutool.version}</version>
  197. </dependency>
  198. <dependency>
  199. <groupId>io.netty</groupId>
  200. <artifactId>netty-all</artifactId>
  201. <version>${netty-all.version}</version>
  202. </dependency>
  203. <dependency>
  204. <groupId>com.alibaba</groupId>
  205. <artifactId>easyexcel</artifactId>
  206. <version>${easyexcel.version}</version>
  207. </dependency>
  208. <dependency>
  209. <groupId>com.aliyun</groupId>
  210. <artifactId>aliyun-java-sdk-dysmsapi</artifactId>
  211. <version>${dysmsapi.version}</version>
  212. </dependency>
  213. <!-- aes PKCS7 -->
  214. <dependency>
  215. <groupId>org.bouncycastle</groupId>
  216. <artifactId>bcprov-jdk15on</artifactId>
  217. <version>${bcprov.version}</version>
  218. </dependency>
  219. <dependency>
  220. <groupId>com.qmth.boot</groupId>
  221. <artifactId>tools-poi</artifactId>
  222. <version>${qmth.boot.version}</version>
  223. </dependency>
  224. <dependency>
  225. <groupId>com.qmth.boot</groupId>
  226. <artifactId>tools-common</artifactId>
  227. <version>${qmth.boot.version}</version>
  228. </dependency>
  229. </dependencies>
  230. </dependencyManagement>
  231. <dependencies>
  232. <!-- 默认依赖测试JAR -->
  233. <dependency>
  234. <groupId>org.springframework.boot</groupId>
  235. <artifactId>spring-boot-starter-test</artifactId>
  236. <version>${spring-boot.version}</version>
  237. <scope>test</scope>
  238. </dependency>
  239. </dependencies>
  240. <build>
  241. <plugins>
  242. <plugin>
  243. <groupId>org.apache.maven.plugins</groupId>
  244. <artifactId>maven-surefire-plugin</artifactId>
  245. <configuration>
  246. <skip>true</skip>
  247. <skipTests>true</skipTests>
  248. </configuration>
  249. </plugin>
  250. <plugin>
  251. <groupId>org.codehaus.mojo</groupId>
  252. <artifactId>versions-maven-plugin</artifactId>
  253. <version>${version-plugin.version}</version>
  254. <configuration>
  255. <generateBackupPoms>false</generateBackupPoms>
  256. </configuration>
  257. </plugin>
  258. <plugin>
  259. <groupId>org.apache.maven.plugins</groupId>
  260. <artifactId>maven-resources-plugin</artifactId>
  261. <version>3.2.0</version>
  262. <configuration>
  263. <encoding>UTF-8</encoding>
  264. <useDefaultDelimiters>false</useDefaultDelimiters>
  265. <delimiters>
  266. <delimiter>$[*]</delimiter>
  267. </delimiters>
  268. <!-- 过滤后缀不需要转码的文件后缀名pdf -->
  269. <nonFilteredFileExtensions>
  270. <nonFilteredFileExtension>pdf</nonFilteredFileExtension>
  271. </nonFilteredFileExtensions>
  272. </configuration>
  273. </plugin>
  274. </plugins>
  275. </build>
  276. </project>