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