pom.xml 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  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. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.trs</groupId>
  7. <artifactId>bdexchange</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <parent>
  10. <groupId>org.springframework.boot</groupId>
  11. <artifactId>spring-boot-starter-parent</artifactId>
  12. <version>2.7.4</version>
  13. <relativePath/> <!-- lookup parent from repository -->
  14. </parent>
  15. <properties>
  16. <maven.compiler.source>8</maven.compiler.source>
  17. <maven.compiler.target>8</maven.compiler.target>
  18. </properties>
  19. <dependencies>
  20. <!--SpringMVC-->
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-web</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-devtools</artifactId>
  28. <scope>runtime</scope>
  29. <optional>true</optional>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-test</artifactId>
  34. <scope>test</scope>
  35. </dependency>
  36. <!--SpringData Jpa-->
  37. <!-- <dependency>-->
  38. <!-- <groupId>org.springframework.boot</groupId>-->
  39. <!-- <artifactId>spring-boot-starter-data-jpa</artifactId>-->
  40. <!-- </dependency>-->
  41. <!--mysql连接包-->
  42. <!--<dependency>
  43. <groupId>mysql</groupId>
  44. <artifactId>mysql-connector-java</artifactId>
  45. <scope>runtime</scope>
  46. </dependency>-->
  47. <!--httpclient5-->
  48. <dependency>
  49. <groupId>org.apache.httpcomponents.client5</groupId>
  50. <artifactId>httpclient5</artifactId>
  51. <version>5.1.3</version>
  52. </dependency>
  53. <!--jsoup-->
  54. <dependency>
  55. <groupId>org.jsoup</groupId>
  56. <artifactId>jsoup</artifactId>
  57. <version>1.13.1</version>
  58. </dependency>
  59. <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
  60. <dependency>
  61. <groupId>commons-io</groupId>
  62. <artifactId>commons-io</artifactId>
  63. <version>2.11.0</version>
  64. </dependency>
  65. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
  66. <!--工具包-->
  67. <dependency>
  68. <groupId>org.apache.commons</groupId>
  69. <artifactId>commons-lang3</artifactId>
  70. <version>3.12.0</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>cn.hutool</groupId>
  74. <artifactId>hutool-all</artifactId>
  75. <version>5.8.8</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>com.alibaba</groupId>
  79. <artifactId>fastjson</artifactId>
  80. <version>1.2.66</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.projectlombok</groupId>
  84. <artifactId>lombok</artifactId>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.springframework.boot</groupId>
  88. <artifactId>spring-boot-starter-test</artifactId>
  89. <scope>test</scope>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.jsoup</groupId>
  93. <artifactId>jsoup</artifactId>
  94. <version>1.11.3</version>
  95. </dependency>
  96. <!--引入mybatis-plus-->
  97. <dependency>
  98. <groupId>com.baomidou</groupId>
  99. <artifactId>mybatis-plus-boot-starter</artifactId>
  100. <version>3.4.3.1</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.apache.poi</groupId>
  104. <artifactId>poi-ooxml</artifactId>
  105. <version>5.2.3</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.apache.poi</groupId>
  109. <artifactId>poi</artifactId>
  110. <version>5.2.3</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.apache.poi</groupId>
  114. <artifactId>poi-scratchpad</artifactId>
  115. <version>5.2.3</version>
  116. </dependency>
  117. <dependency>
  118. <groupId>org.apache.pdfbox</groupId>
  119. <artifactId>pdfbox</artifactId>
  120. <version>2.0.29</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>org.apache.pdfbox</groupId>
  124. <artifactId>pdfbox</artifactId>
  125. <version>2.0.29</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>net.sourceforge.tess4j</groupId>
  129. <artifactId>tess4j</artifactId>
  130. <version>5.4.0</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>com.github.junrar</groupId>
  134. <artifactId>junrar</artifactId>
  135. <version>7.5.5</version>
  136. </dependency>
  137. <dependency>
  138. <groupId>org.apache.commons</groupId>
  139. <artifactId>commons-compress</artifactId>
  140. <version>1.21</version>
  141. </dependency>
  142. <dependency>
  143. <groupId>com.github.junrar</groupId>
  144. <artifactId>junrar</artifactId>
  145. <version>7.5.4</version> <!-- 或者最新版本 -->
  146. </dependency>
  147. <dependency>
  148. <groupId>net.sf.sevenzipjbinding</groupId>
  149. <artifactId>sevenzipjbinding</artifactId>
  150. <version>16.02-2.01</version>
  151. </dependency>
  152. <dependency>
  153. <groupId>net.sf.sevenzipjbinding</groupId>
  154. <artifactId>sevenzipjbinding-all-platforms</artifactId>
  155. <version>16.02-2.01</version>
  156. </dependency>
  157. <dependency>
  158. <groupId>com.jcraft</groupId>
  159. <artifactId>jsch</artifactId>
  160. <version>0.1.55</version>
  161. </dependency>
  162. <dependency>
  163. <groupId>com.twelvemonkeys.imageio</groupId>
  164. <artifactId>imageio-core</artifactId>
  165. <version>3.8.0</version>
  166. </dependency>
  167. <dependency>
  168. <groupId>com.twelvemonkeys.imageio</groupId>
  169. <artifactId>imageio-webp</artifactId>
  170. <version>3.8.0</version>
  171. </dependency>
  172. </dependencies>
  173. <build>
  174. <plugins>
  175. <plugin>
  176. <groupId>org.springframework.boot</groupId>
  177. <artifactId>spring-boot-maven-plugin</artifactId>
  178. </plugin>
  179. </plugins>
  180. </build>
  181. </project>