pom.xml 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  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. <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. <groupId>com.huimv</groupId>
  12. <artifactId>huimv-receive</artifactId>
  13. <version>0.0.2-SNAPSHOT</version>
  14. <name>receive</name>
  15. <description>Demo project for Spring Boot</description>
  16. <properties>
  17. <java.version>8</java.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-web</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-validation</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>net.sourceforge.jtds</groupId>
  30. <artifactId>jtds</artifactId>
  31. <version>1.2.4</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.apache.commons</groupId>
  35. <artifactId>commons-dbcp2</artifactId>
  36. <version>2.12.0</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.projectlombok</groupId>
  40. <artifactId>lombok</artifactId>
  41. <optional>true</optional>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-starter-test</artifactId>
  46. <scope>test</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>mysql</groupId>
  50. <artifactId>mysql-connector-java</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.alibaba</groupId>
  54. <artifactId>druid-spring-boot-starter</artifactId>
  55. <version>1.2.5</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.auth0</groupId>
  59. <artifactId>java-jwt</artifactId>
  60. <version>3.3.0</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.belerweb</groupId>
  64. <artifactId>pinyin4j</artifactId>
  65. <version>2.5.1</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>io.jsonwebtoken</groupId>
  69. <artifactId>jjwt</artifactId>
  70. <version>0.9.1</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>net.sf.json-lib</groupId>
  74. <artifactId>json-lib</artifactId>
  75. <version>2.2.3</version>
  76. <classifier>jdk15</classifier>
  77. </dependency>
  78. <dependency>
  79. <groupId>com.alibaba</groupId>
  80. <artifactId>fastjson</artifactId>
  81. <version>1.2.28</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>cn.dustlight.captcha</groupId>
  85. <artifactId>redis-store</artifactId>
  86. <version>0.0.6</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>cn.dustlight.captcha</groupId>
  90. <artifactId>captcha-core</artifactId>
  91. <version>0.0.6</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>cn.hutool</groupId>
  95. <artifactId>hutool-all</artifactId>
  96. <version>5.7.11</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>com.baomidou</groupId>
  100. <artifactId>mybatis-plus-boot-starter</artifactId>
  101. <version>3.4.2</version>
  102. </dependency>
  103. <dependency>
  104. <groupId>com.baomidou</groupId>
  105. <artifactId>mybatis-plus-extension</artifactId>
  106. <version>3.4.2</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>com.baomidou</groupId>
  110. <artifactId>mybatis-plus-generator</artifactId>
  111. <version>3.2.0</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>org.apache.httpcomponents</groupId>
  115. <artifactId>httpclient</artifactId>
  116. <version>4.5.14</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>com.jcraft</groupId>
  120. <artifactId>jsch</artifactId>
  121. <version>0.1.54</version>
  122. </dependency>
  123. <!-- <dependency>-->
  124. <!-- <groupId>org.bytedeco</groupId>-->
  125. <!-- <artifactId>javacv-platform</artifactId>-->
  126. <!-- <version>1.5.7</version>-->
  127. <!-- </dependency>-->
  128. <!-- <dependency>-->
  129. <!-- <groupId>ws.schild</groupId>-->
  130. <!-- <artifactId>jave-nativebin-linux64</artifactId>-->
  131. <!-- <version>3.0.0</version>-->
  132. <!-- </dependency>-->
  133. <dependency>
  134. <groupId>org.jxls</groupId>
  135. <artifactId>jxls</artifactId>
  136. <version>2.6.0</version>
  137. </dependency>
  138. <dependency>
  139. <groupId>org.jxls</groupId>
  140. <artifactId>jxls-poi</artifactId>
  141. <version>1.1.0</version>
  142. </dependency>
  143. </dependencies>
  144. <build>
  145. <plugins>
  146. <plugin>
  147. <groupId>org.springframework.boot</groupId>
  148. <artifactId>spring-boot-maven-plugin</artifactId>
  149. <!-- <configuration>-->
  150. <!-- <includeSystemScope>true</includeSystemScope>-->
  151. <!-- <skip>true</skip>-->
  152. <!-- <mainClass>HuimvAdminApplication</mainClass>-->
  153. <!-- </configuration>-->
  154. </plugin>
  155. <!--在这里修改版本-->
  156. <plugin>
  157. <groupId>org.apache.maven.plugins</groupId>
  158. <artifactId>maven-resources-plugin</artifactId>
  159. <version>2.4.3</version>
  160. </plugin>
  161. <!---->
  162. </plugins>
  163. </build>
  164. </project>