pom.xml 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  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>org.projectlombok</groupId>
  24. <artifactId>lombok</artifactId>
  25. <optional>true</optional>
  26. </dependency>
  27. <dependency>
  28. <groupId>mysql</groupId>
  29. <artifactId>mysql-connector-java</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.auth0</groupId>
  33. <artifactId>java-jwt</artifactId>
  34. <version>3.3.0</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.belerweb</groupId>
  38. <artifactId>pinyin4j</artifactId>
  39. <version>2.5.1</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>io.jsonwebtoken</groupId>
  43. <artifactId>jjwt</artifactId>
  44. <version>0.9.1</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>net.sf.json-lib</groupId>
  48. <artifactId>json-lib</artifactId>
  49. <version>2.2.3</version>
  50. <classifier>jdk15</classifier>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.alibaba</groupId>
  54. <artifactId>fastjson</artifactId>
  55. <version>1.2.28</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>cn.dustlight.captcha</groupId>
  59. <artifactId>redis-store</artifactId>
  60. <version>0.0.6</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>cn.dustlight.captcha</groupId>
  64. <artifactId>captcha-core</artifactId>
  65. <version>0.0.6</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>cn.hutool</groupId>
  69. <artifactId>hutool-all</artifactId>
  70. <version>5.7.11</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.baomidou</groupId>
  74. <artifactId>mybatis-plus-boot-starter</artifactId>
  75. <version>3.4.2</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>com.baomidou</groupId>
  79. <artifactId>mybatis-plus-extension</artifactId>
  80. <version>3.4.2</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>com.baomidou</groupId>
  84. <artifactId>mybatis-plus-generator</artifactId>
  85. <version>3.2.0</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>com.hkvs</groupId>
  89. <artifactId>commons-codec</artifactId>
  90. <version>1.4</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>com.hkvs</groupId>
  94. <artifactId>commons-io</artifactId>
  95. <version>2.0.1</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>com.hkvs</groupId>
  99. <artifactId>commons-lang3</artifactId>
  100. <version>3.3.1</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>com.hkvs</groupId>
  104. <artifactId>commons-logging</artifactId>
  105. <version>1.1.1</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>com.hkvs</groupId>
  109. <artifactId>Digests.jar</artifactId>
  110. <version>1.1.1</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>com.hkvs</groupId>
  114. <artifactId>fastjson</artifactId>
  115. <version>1.2.8</version>
  116. </dependency>
  117. <dependency>
  118. <groupId>com.hkvs</groupId>
  119. <artifactId>httpclient</artifactId>
  120. <version>4.5.1</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>com.hkvs</groupId>
  124. <artifactId>HttpClientSSLUtils</artifactId>
  125. <version>1.0</version>
  126. </dependency> <dependency>
  127. <groupId>com.hkvs</groupId>
  128. <artifactId>httpcore</artifactId>
  129. <version>4.4.3</version>
  130. </dependency>
  131. </dependencies>
  132. <build>
  133. <plugins>
  134. <plugin>
  135. <groupId>org.springframework.boot</groupId>
  136. <artifactId>spring-boot-maven-plugin</artifactId>
  137. <!-- <configuration>-->
  138. <!-- <includeSystemScope>true</includeSystemScope>-->
  139. <!-- <skip>true</skip>-->
  140. <!-- <mainClass>HuimvAdminApplication</mainClass>-->
  141. <!-- </configuration>-->
  142. </plugin>
  143. <!--在这里修改版本-->
  144. <plugin>
  145. <groupId>org.apache.maven.plugins</groupId>
  146. <artifactId>maven-resources-plugin</artifactId>
  147. <version>2.4.3</version>
  148. </plugin>
  149. <!---->
  150. </plugins>
  151. </build>
  152. </project>