pom.xml 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>eladmin</artifactId>
  7. <groupId>me.zhengjie</groupId>
  8. <version>2.6</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>eladmin-system</artifactId>
  12. <name>核心模块</name>
  13. <properties>
  14. <jjwt.version>0.11.1</jjwt.version>
  15. <!-- oshi监控需要指定jna版本, 问题详见 https://github.com/oshi/oshi/issues/1040 -->
  16. <jna.version>5.8.0</jna.version>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  19. <java.version>1.8</java.version>
  20. <aliyun-oss.version>2.8.3</aliyun-oss.version>
  21. <aliyun.sdk.version>4.5.1</aliyun.sdk.version>
  22. <tencentcloud.sdk.version>3.1.598</tencentcloud.sdk.version>
  23. <hu.tu>5.4.5</hu.tu>
  24. <xxl.job.version>2.3.0</xxl.job.version>
  25. <zefer.fonts.version>1.0</zefer.fonts.version>
  26. <zefer.pd4ml.version>370fx2pro</zefer.pd4ml.version>
  27. <zefer.ss_css.version>1.0</zefer.ss_css.version>
  28. <NATLSignClient.version>1.1.0</NATLSignClient.version>
  29. </properties>
  30. <dependencies>
  31. <!-- 代码生成模块 -->
  32. <dependency>
  33. <groupId>me.zhengjie</groupId>
  34. <artifactId>eladmin-generator</artifactId>
  35. <version>2.6</version>
  36. <exclusions>
  37. <exclusion>
  38. <groupId>me.zhengjie</groupId>
  39. <artifactId>eladmin-common</artifactId>
  40. </exclusion>
  41. </exclusions>
  42. </dependency>
  43. <dependency>
  44. <groupId>me.zhengjie</groupId>
  45. <artifactId>eladmin-security</artifactId>
  46. <version>2.6</version>
  47. <exclusions>
  48. <exclusion>
  49. <groupId>me.zhengjie</groupId>
  50. <artifactId>eladmin-common</artifactId>
  51. </exclusion>
  52. </exclusions>
  53. </dependency>
  54. <dependency>
  55. <groupId>me.zhengjie</groupId>
  56. <artifactId>eladmin-mnt</artifactId>
  57. <version>2.6</version>
  58. <exclusions>
  59. <exclusion>
  60. <groupId>me.zhengjie</groupId>
  61. <artifactId>eladmin-logging</artifactId>
  62. </exclusion>
  63. </exclusions>
  64. </dependency>
  65. <!-- quartz模块包含了tools common 和 logging 模块 -->
  66. <dependency>
  67. <groupId>me.zhengjie</groupId>
  68. <artifactId>eladmin-quartz</artifactId>
  69. <version>2.6</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>me.zhengjie</groupId>
  73. <artifactId>eladmin-sign</artifactId>
  74. <version>2.6</version>
  75. </dependency>
  76. <!-- Spring boot websocket -->
  77. <dependency>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-starter-websocket</artifactId>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.apache.pdfbox</groupId>
  83. <artifactId>pdfbox</artifactId>
  84. <version>2.0.22</version>
  85. </dependency>
  86. <!-- 获取系统信息 -->
  87. <dependency>
  88. <groupId>com.github.oshi</groupId>
  89. <artifactId>oshi-core</artifactId>
  90. <version>5.7.1</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>com.baomidou</groupId>
  94. <artifactId>mybatis-plus-boot-starter</artifactId>
  95. <version>3.5.1</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>com.baomidou</groupId>
  99. <artifactId>mybatis-plus-generator</artifactId>
  100. <version>3.5.1</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.zefer</groupId>
  104. <artifactId>pd4ml</artifactId>
  105. <version>${zefer.pd4ml.version}</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.zefer</groupId>
  109. <artifactId>fonts</artifactId>
  110. <version>${zefer.fonts.version}</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>io.minio</groupId>
  114. <artifactId>minio</artifactId>
  115. <version>7.0.2</version>
  116. </dependency>
  117. <dependency>
  118. <groupId>org.zefer</groupId>
  119. <artifactId>ss_css2</artifactId>
  120. <version>${zefer.ss_css.version}</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>com.uinid</groupId>
  124. <artifactId>NATLSignClient</artifactId>
  125. <version>${NATLSignClient.version}</version>
  126. </dependency>
  127. <!--阿里OSS对象服务 -->
  128. <dependency>
  129. <groupId>com.aliyun.oss</groupId>
  130. <artifactId>aliyun-sdk-oss</artifactId>
  131. <version>2.7.0</version>
  132. </dependency>
  133. <!-- 阿里短信服务 -->
  134. <dependency>
  135. <groupId>com.aliyun</groupId>
  136. <artifactId>aliyun-java-sdk-core</artifactId>
  137. <version>${aliyun.sdk.version}</version>
  138. </dependency>
  139. <!-- 腾讯人脸识别SDk -->
  140. <dependency>
  141. <groupId>com.tencentcloudapi</groupId>
  142. <artifactId>tencentcloud-sdk-java</artifactId>
  143. <version>${tencentcloud.sdk.version}</version>
  144. </dependency>
  145. <dependency>
  146. <groupId>cn.hutool</groupId>
  147. <artifactId>hutool-all</artifactId>
  148. <version>${hu.tu}</version>
  149. </dependency>
  150. <dependency>
  151. <groupId>org.springframework.boot</groupId>
  152. <artifactId>spring-boot-configuration-processor</artifactId>
  153. <optional>true</optional>
  154. </dependency>
  155. <dependency>
  156. <groupId>com.github.tencentyun</groupId>
  157. <artifactId>tls-sig-api-v2</artifactId>
  158. <version>2.0</version>
  159. </dependency>
  160. <dependency>
  161. <groupId>com.xuxueli</groupId>
  162. <artifactId>xxl-job-core</artifactId>
  163. <version>${xxl.job.version}</version>
  164. </dependency>
  165. <dependency>
  166. <groupId>net.coobird</groupId>
  167. <artifactId>thumbnailator</artifactId>
  168. <version>0.4.16</version>
  169. </dependency>
  170. <dependency>
  171. <groupId>com.lowagie</groupId>
  172. <artifactId>itext</artifactId>
  173. <version>2.0.8</version>
  174. </dependency>
  175. <dependency>
  176. <groupId>org.xhtmlrenderer</groupId>
  177. <artifactId>core-renderer</artifactId>
  178. <version>R8</version>
  179. </dependency>
  180. <dependency>
  181. <groupId>com.arcsoft.face</groupId>
  182. <artifactId>face</artifactId>
  183. <version>3.0.0.0</version>
  184. </dependency>
  185. <dependency>
  186. <groupId>org.jsoup</groupId>
  187. <artifactId>jsoup</artifactId>
  188. <version>1.13.1</version>
  189. </dependency>
  190. <dependency>
  191. <groupId>com.openhtmltopdf</groupId>
  192. <artifactId>openhtmltopdf-core</artifactId>
  193. <version>1.0.6</version>
  194. </dependency>
  195. <dependency>
  196. <groupId>com.openhtmltopdf</groupId>
  197. <artifactId>openhtmltopdf-pdfbox</artifactId>
  198. <version>1.0.6</version>
  199. </dependency>
  200. <dependency>
  201. <groupId>commons-httpclient</groupId>
  202. <artifactId>commons-httpclient</artifactId>
  203. <version>3.1</version>
  204. </dependency>
  205. </dependencies>
  206. <!-- 打包 -->
  207. <build>
  208. <plugins>
  209. <plugin>
  210. <groupId>org.springframework.boot</groupId>
  211. <artifactId>spring-boot-maven-plugin</artifactId>
  212. <configuration>
  213. <fork>true</fork>
  214. <includeSystemScope>true</includeSystemScope>
  215. <includes>
  216. <include>
  217. <groupId>${project.groupId}</groupId>
  218. <artifactId>${project.artifactId}</artifactId>
  219. </include>
  220. </includes>
  221. <layout>ZIP</layout>
  222. <jvmArguments>-Dfile.encoding=UTF-8</jvmArguments>
  223. </configuration>
  224. </plugin>
  225. <plugin>
  226. <groupId>org.apache.maven.plugins</groupId>
  227. <artifactId>maven-dependency-plugin</artifactId>
  228. <executions>
  229. <execution>
  230. <id>copy-dependencies</id>
  231. <phase>package</phase>
  232. <goals>
  233. <goal>copy-dependencies</goal>
  234. </goals>
  235. <configuration>
  236. <outputDirectory>${project.build.directory}/jar</outputDirectory>
  237. <excludeTransitive>false</excludeTransitive>
  238. <stripVersion>false</stripVersion>
  239. </configuration>
  240. </execution>
  241. </executions>
  242. </plugin>
  243. <!-- 跳过单元测试 -->
  244. <plugin>
  245. <groupId>org.apache.maven.plugins</groupId>
  246. <artifactId>maven-surefire-plugin</artifactId>
  247. <configuration>
  248. <skipTests>true</skipTests>
  249. </configuration>
  250. </plugin>
  251. </plugins>
  252. </build>
  253. </project>