pom.xml 5.1 KB

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