pom.xml 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  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. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.4.1</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <properties>
  12. <java.version>1.8</java.version>
  13. <spring-cloud.version>2020.0.0</spring-cloud.version>
  14. </properties>
  15. <modelVersion>4.0.0</modelVersion>
  16. <artifactId>huimv-admin</artifactId>
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter-web</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>junit</groupId>
  24. <artifactId>junit</artifactId>
  25. <version>4.13.2</version>
  26. <scope>test</scope>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.projectlombok</groupId>
  30. <artifactId>lombok</artifactId>
  31. <optional>true</optional>
  32. </dependency>
  33. <dependency>
  34. <groupId>mysql</groupId>
  35. <artifactId>mysql-connector-java</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.alibaba</groupId>
  39. <artifactId>druid-spring-boot-starter</artifactId>
  40. <version>1.2.5</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.auth0</groupId>
  44. <artifactId>java-jwt</artifactId>
  45. <version>3.3.0</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.belerweb</groupId>
  49. <artifactId>pinyin4j</artifactId>
  50. <version>2.5.1</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>io.jsonwebtoken</groupId>
  54. <artifactId>jjwt</artifactId>
  55. <version>0.9.1</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>net.sf.json-lib</groupId>
  59. <artifactId>json-lib</artifactId>
  60. <version>2.2.3</version>
  61. <classifier>jdk15</classifier>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.alibaba</groupId>
  65. <artifactId>fastjson</artifactId>
  66. <version>1.2.28</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>cn.dustlight.captcha</groupId>
  70. <artifactId>redis-store</artifactId>
  71. <version>0.0.6</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>cn.dustlight.captcha</groupId>
  75. <artifactId>captcha-core</artifactId>
  76. <version>0.0.6</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>cn.hutool</groupId>
  80. <artifactId>hutool-all</artifactId>
  81. <version>5.7.11</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>com.baomidou</groupId>
  85. <artifactId>mybatis-plus-boot-starter</artifactId>
  86. <version>3.4.2</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>com.baomidou</groupId>
  90. <artifactId>mybatis-plus-extension</artifactId>
  91. <version>3.4.2</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>com.baomidou</groupId>
  95. <artifactId>mybatis-plus-generator</artifactId>
  96. <version>3.2.0</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>com.hkvs</groupId>
  100. <artifactId>commons-codec</artifactId>
  101. <version>1.4</version>
  102. </dependency>
  103. <dependency>
  104. <groupId>com.hkvs</groupId>
  105. <artifactId>commons-io</artifactId>
  106. <version>2.0.1</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>com.hkvs</groupId>
  110. <artifactId>commons-lang3</artifactId>
  111. <version>3.3.1</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>com.hkvs</groupId>
  115. <artifactId>commons-logging</artifactId>
  116. <version>1.1.1</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>com.hkvs</groupId>
  120. <artifactId>Digests.jar</artifactId>
  121. <version>1.1.1</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>com.hkvs</groupId>
  125. <artifactId>fastjson</artifactId>
  126. <version>1.2.8</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>com.hkvs</groupId>
  130. <artifactId>httpclient</artifactId>
  131. <version>4.5.1</version>
  132. </dependency>
  133. <dependency>
  134. <groupId>com.hikvision.ga</groupId>
  135. <artifactId>artemis-http-client</artifactId>
  136. <version>1.1.8</version>
  137. </dependency>
  138. <dependency>
  139. <groupId>org.apache.httpcomponents</groupId>
  140. <artifactId>httpclient</artifactId>
  141. <version>4.5.14</version>
  142. </dependency>
  143. <dependency>
  144. <groupId>com.jcraft</groupId>
  145. <artifactId>jsch</artifactId>
  146. <version>0.1.54</version>
  147. </dependency>
  148. <dependency>
  149. <groupId>com.hkvs</groupId>
  150. <artifactId>HttpClientSSLUtils</artifactId>
  151. <version>1.0</version>
  152. </dependency>
  153. <dependency>
  154. <groupId>com.hkvs</groupId>
  155. <artifactId>httpcore</artifactId>
  156. <version>4.4.3</version>
  157. </dependency>
  158. <dependency>
  159. <groupId>org.jxls</groupId>
  160. <artifactId>jxls</artifactId>
  161. <version>2.6.0</version>
  162. </dependency>
  163. <dependency>
  164. <groupId>org.jxls</groupId>
  165. <artifactId>jxls-poi</artifactId>
  166. <version>1.1.0</version>
  167. </dependency>
  168. <!-- easy-trans -->
  169. <dependency>
  170. <groupId>com.fhs-opensource</groupId>
  171. <artifactId>easy-trans-spring-boot-starter</artifactId>
  172. <version>2.1.7</version>
  173. </dependency>
  174. <!-- easy-trans-mybatis-plus-extend -->
  175. <dependency>
  176. <groupId>com.fhs-opensource</groupId>
  177. <artifactId>easy-trans-mybatis-plus-extend</artifactId>
  178. <version>2.1.7</version>
  179. </dependency>
  180. </dependencies>
  181. <build>
  182. <plugins>
  183. <plugin>
  184. <groupId>org.springframework.boot</groupId>
  185. <artifactId>spring-boot-maven-plugin</artifactId>
  186. <!-- <configuration>-->
  187. <!-- <includeSystemScope>true</includeSystemScope>-->
  188. <!-- <skip>true</skip>-->
  189. <!-- <mainClass>HuimvAdminApplication</mainClass>-->
  190. <!-- </configuration>-->
  191. </plugin>
  192. <!--在这里修改版本-->
  193. <plugin>
  194. <groupId>org.apache.maven.plugins</groupId>
  195. <artifactId>maven-resources-plugin</artifactId>
  196. <version>2.4.3</version>
  197. </plugin>
  198. <!---->
  199. <!-- 代码混淆proguard maven插件 -->
  200. <!-- <plugin>-->
  201. <!-- <groupId>com.github.wvengen</groupId>-->
  202. <!-- <artifactId>proguard-maven-plugin</artifactId>-->
  203. <!-- <version>2.6.0</version>-->
  204. <!-- <executions>-->
  205. <!-- &lt;!&ndash; package时执行proguard &ndash;&gt;-->
  206. <!-- <execution>-->
  207. <!-- <phase>package</phase>-->
  208. <!-- <goals>-->
  209. <!-- <goal>proguard</goal>-->
  210. <!-- </goals>-->
  211. <!-- </execution>-->
  212. <!-- </executions>-->
  213. <!-- <configuration>-->
  214. <!-- <putLibraryJarsInTempDir>true</putLibraryJarsInTempDir>-->
  215. <!-- &lt;!&ndash; 输入的jar包 &ndash;&gt;-->
  216. <!-- <injar>${project.build.finalName}.jar</injar>-->
  217. <!-- &lt;!&ndash; 输出的jar包 &ndash;&gt;-->
  218. <!-- <outjar>${project.build.finalName}.jar</outjar>-->
  219. <!-- &lt;!&ndash; 是否进行混淆,默认为true &ndash;&gt;-->
  220. <!-- <obfuscate>true</obfuscate>-->
  221. <!-- &lt;!&ndash; 配置文件,通常为proguard.cfg,主要对options选项进行配置,所有的options选项都可以进行配置 &ndash;&gt;-->
  222. <!-- <proguardInclude>${project.basedir}/proguard.cfg</proguardInclude>-->
  223. <!-- &lt;!&ndash; 额外的jar,项目编译所需的jar &ndash;&gt;-->
  224. <!-- <libs>-->
  225. <!-- <lib>${java.home}/lib/rt.jar</lib>-->
  226. <!-- &lt;!&ndash;<lib>${java.home}/lib/jce.jar</lib>&ndash;&gt;-->
  227. <!-- <lib>${java.home}/lib/jsse.jar</lib>-->
  228. <!-- </libs>-->
  229. <!-- &lt;!&ndash; 对输入jar进行过滤,如对META-INFO文件不处理 &ndash;&gt;-->
  230. <!-- <inLibsFilter>!META-INF/**,!META-INF/versions/**</inLibsFilter>-->
  231. <!-- &lt;!&ndash; 输出路径配置,必须包含injar标签中填写的jar &ndash;&gt;-->
  232. <!-- <outputDirectory>${project.build.directory}</outputDirectory>-->
  233. <!-- &lt;!&ndash; 上面使用了conf配置文件,options无需配置 &ndash;&gt;-->
  234. <!-- &lt;!&ndash;<options></options>&ndash;&gt;-->
  235. <!-- </configuration>-->
  236. <!-- </plugin>-->
  237. </plugins>
  238. </build>
  239. </project>