pom.xml 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  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. <packaging>pom</packaging>
  6. <modules>
  7. <module>huimv-huyang-admin</module>
  8. </modules>
  9. <parent>
  10. <groupId>org.springframework.boot</groupId>
  11. <artifactId>spring-boot-starter-parent</artifactId>
  12. <version>2.4.1</version>
  13. <relativePath/> <!-- lookup parent from repository -->
  14. </parent>
  15. <groupId>com.huimv</groupId>
  16. <artifactId>huimv-deqing-huyang</artifactId>
  17. <version>0.0.1-SNAPSHOT</version>
  18. <name>huimv-deqing-huyang</name>
  19. <description>Demo project for Spring Boot</description>
  20. <properties>
  21. <java.version>1.8</java.version>
  22. </properties>
  23. <dependencies>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-web</artifactId>
  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. </plugin>
  187. <plugin>
  188. <groupId>org.apache.maven.plugins</groupId>
  189. <artifactId>maven-resources-plugin</artifactId>
  190. <version>2.4.3</version>
  191. </plugin>
  192. </plugins>
  193. </build>
  194. </project>