pom.xml 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  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.guowei</groupId>
  12. <artifactId>guowei-admin</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>admin</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-test</artifactId>
  27. <scope>test</scope>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.projectlombok</groupId>
  31. <artifactId>lombok</artifactId>
  32. <optional>true</optional>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-test</artifactId>
  37. <scope>test</scope>
  38. </dependency>
  39. <dependency>
  40. <groupId>mysql</groupId>
  41. <artifactId>mysql-connector-java</artifactId>
  42. <version>8.0.32</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>net.sf.json-lib</groupId>
  46. <artifactId>json-lib</artifactId>
  47. <version>2.2.3</version>
  48. <classifier>jdk15</classifier>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.auth0</groupId>
  52. <artifactId>java-jwt</artifactId>
  53. <version>3.3.0</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.belerweb</groupId>
  57. <artifactId>pinyin4j</artifactId>
  58. <version>2.5.1</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>io.jsonwebtoken</groupId>
  62. <artifactId>jjwt</artifactId>
  63. <version>0.9.1</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.alibaba</groupId>
  67. <artifactId>fastjson</artifactId>
  68. <version>1.2.28</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.alibaba</groupId>
  72. <artifactId>druid-spring-boot-starter</artifactId>
  73. <version>1.2.5</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>cn.hutool</groupId>
  77. <artifactId>hutool-all</artifactId>
  78. <version>5.7.11</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.baomidou</groupId>
  82. <artifactId>mybatis-plus-boot-starter</artifactId>
  83. <version>3.4.2</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.baomidou</groupId>
  87. <artifactId>mybatis-plus-extension</artifactId>
  88. <version>3.4.2</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.baomidou</groupId>
  92. <artifactId>mybatis-plus-generator</artifactId>
  93. <version>3.2.0</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.eclipse.paho</groupId>
  97. <artifactId>org.eclipse.paho.client.mqttv3</artifactId>
  98. <version>1.2.2</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.springframework.integration</groupId>
  102. <artifactId>spring-integration-mqtt</artifactId>
  103. </dependency>
  104. <dependency>
  105. <groupId>org.springframework.integration</groupId>
  106. <artifactId>spring-integration-stream</artifactId>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.springframework.boot</groupId>
  110. <artifactId>spring-boot-starter-integration</artifactId>
  111. </dependency>
  112. <!--sftp文件上传-->
  113. <dependency>
  114. <groupId>com.jcraft</groupId>
  115. <artifactId>jsch</artifactId>
  116. <version>0.1.54</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>junit</groupId>
  120. <artifactId>junit</artifactId>
  121. </dependency>
  122. <dependency>
  123. <groupId>org.jxls</groupId>
  124. <artifactId>jxls</artifactId>
  125. <version>2.6.0</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>org.jxls</groupId>
  129. <artifactId>jxls-poi</artifactId>
  130. <version>1.1.0</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>org.apache.poi</groupId>
  134. <artifactId>poi</artifactId>
  135. <version>3.15</version>
  136. </dependency>
  137. <!-- poi 读取word doc-->
  138. <dependency>
  139. <groupId>org.apache.poi</groupId>
  140. <artifactId>poi-scratchpad</artifactId>
  141. <version>3.15</version>
  142. </dependency>
  143. <!-- poi 读取word docx-->
  144. <!-- <dependency>-->
  145. <!-- <groupId>fr.opensagres.xdocreport</groupId>-->
  146. <!-- <artifactId>xdocreport</artifactId>-->
  147. <!-- <version>1.0.6</version>-->
  148. <!-- </dependency>-->
  149. <!-- poi xml-->
  150. <dependency>
  151. <groupId>org.apache.poi</groupId>
  152. <artifactId>poi-ooxml</artifactId>
  153. <version>3.15</version>
  154. </dependency>
  155. <dependency>
  156. <groupId>org.apache.poi</groupId>
  157. <artifactId>poi-ooxml-schemas</artifactId>
  158. <version>3.15</version>
  159. </dependency>
  160. <dependency>
  161. <groupId>org.projectlombok</groupId>
  162. <artifactId>lombok</artifactId>
  163. <version>1.18.12</version>
  164. <scope>provided</scope>
  165. </dependency>
  166. <dependency>
  167. <groupId>fr.opensagres.xdocreport</groupId>
  168. <artifactId>org.apache.poi.xwpf.converter.xhtml</artifactId>
  169. <version>1.0.6</version>
  170. </dependency>
  171. </dependencies>
  172. <build>
  173. <plugins>
  174. <plugin>
  175. <groupId>org.springframework.boot</groupId>
  176. <artifactId>spring-boot-maven-plugin</artifactId>
  177. <configuration>
  178. <excludes>
  179. <exclude>
  180. <groupId>org.projectlombok</groupId>
  181. <artifactId>lombok</artifactId>
  182. </exclude>
  183. </excludes>
  184. </configuration>
  185. </plugin>
  186. <plugin>
  187. <groupId>org.apache.maven.plugins</groupId>
  188. <artifactId>maven-resources-plugin</artifactId>
  189. <version>2.4.3</version>
  190. </plugin>
  191. </plugins>
  192. </build>
  193. </project>