pom.xml 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>com.jzg</groupId>
  6. <artifactId>jzg</artifactId>
  7. <version>1.0-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>commons</artifactId>
  10. <packaging>jar</packaging>
  11. <name>commons Maven Webapp</name>
  12. <url>http://maven.apache.org</url>
  13. <dependencies>
  14. <!-- Spring Boot Starter Web -->
  15. <dependency>
  16. <groupId>org.springframework.boot</groupId>
  17. <artifactId>spring-boot-starter-web</artifactId>
  18. <version>3.0.0</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.projectlombok</groupId>
  22. <artifactId>lombok</artifactId>
  23. </dependency>
  24. <!--swagger -->
  25. <dependency>
  26. <groupId>org.springdoc</groupId>
  27. <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.baomidou</groupId>
  31. <artifactId>mybatis-plus-spring-boot3-starter</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.redisson</groupId>
  35. <artifactId>redisson</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.redisson</groupId>
  39. <artifactId>redisson-spring-boot-starter</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.redisson</groupId>
  43. <artifactId>redisson-spring-data-27</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.baomidou</groupId>
  47. <artifactId>mybatis-plus-extension</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>cn.hutool</groupId>
  51. <artifactId>hutool-core</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>io.minio</groupId>
  55. <artifactId>minio</artifactId>
  56. <version>${minio.version}</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.alibaba</groupId>
  60. <artifactId>easyexcel-core</artifactId>
  61. <version>3.3.2</version>
  62. <scope>compile</scope>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.reflections</groupId>
  66. <artifactId>reflections</artifactId>
  67. <version>0.9.10</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.bouncycastle</groupId>
  71. <artifactId>bcpkix-jdk15on</artifactId>
  72. <version>1.70</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.apache.httpcomponents.client5</groupId>
  76. <artifactId>httpclient5</artifactId>
  77. <version>5.2.1</version> <!-- 请使用最新版本 -->
  78. </dependency>
  79. <!--读取pdf-->
  80. <dependency>
  81. <groupId>org.apache.pdfbox</groupId>
  82. <artifactId>pdfbox</artifactId>
  83. <version>2.0.28</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>net.lingala.zip4j</groupId>
  87. <artifactId>zip4j</artifactId>
  88. <version>1.3.2</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>javax.validation</groupId>
  92. <artifactId>validation-api</artifactId>
  93. <version>2.0.1.Final</version>
  94. <scope>compile</scope>
  95. </dependency>
  96. <dependency>
  97. <groupId>commons-httpclient</groupId>
  98. <artifactId>commons-httpclient</artifactId>
  99. <version>3.1</version>
  100. <scope>compile</scope>
  101. </dependency>
  102. <dependency>
  103. <groupId>io.netty</groupId>
  104. <artifactId>netty-codec-http</artifactId>
  105. </dependency>
  106. <dependency>
  107. <groupId>cn.hutool</groupId>
  108. <artifactId>hutool-all</artifactId>
  109. <version>5.8.26</version>
  110. <scope>compile</scope>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.springframework.cloud</groupId>
  114. <artifactId>spring-cloud-starter-openfeign</artifactId>
  115. </dependency>
  116. </dependencies>
  117. <build>
  118. <plugins>
  119. <plugin>
  120. <groupId>org.apache.maven.plugins</groupId>
  121. <artifactId>maven-compiler-plugin</artifactId>
  122. <configuration>
  123. <source>14</source>
  124. <target>14</target>
  125. </configuration>
  126. </plugin>
  127. </plugins>
  128. </build>
  129. <!-- <build>-->
  130. <!-- <directory>${project.basedir}/target</directory>-->
  131. <!-- <plugins>-->
  132. <!-- <plugin>-->
  133. <!-- <groupId>org.apache.maven.plugins</groupId>-->
  134. <!-- <artifactId>maven-jar-plugin</artifactId>-->
  135. <!-- <configuration>-->
  136. <!-- <archive>-->
  137. <!-- <manifest>-->
  138. <!-- &lt;!&ndash;是否要把第三方jar放到manifest的classpath中&ndash;&gt;-->
  139. <!-- <addClasspath>true</addClasspath>-->
  140. <!-- &lt;!&ndash;生成的manifest中classpath的前缀,因为要把第三方jar放到lib目录下,所以classpath的前缀是lib/&ndash;&gt;-->
  141. <!-- <classpathPrefix>lib/</classpathPrefix>-->
  142. <!-- &lt;!&ndash; 打包时 MANIFEST.MF 文件不记录的时间戳版本 &ndash;&gt;-->
  143. <!-- <useUniqueVersions>false</useUniqueVersions>-->
  144. <!-- </manifest>-->
  145. <!-- <manifestEntries>-->
  146. <!-- &lt;!&ndash; 在 Class-Path 下添加配置文件的路径 &ndash;&gt;-->
  147. <!-- <Class-Path>config/</Class-Path>-->
  148. <!-- </manifestEntries>-->
  149. <!-- </archive>-->
  150. <!-- </configuration>-->
  151. <!-- </plugin>-->
  152. <!-- <plugin>-->
  153. <!-- <groupId>org.apache.maven.plugins</groupId>-->
  154. <!-- <artifactId>maven-dependency-plugin</artifactId>-->
  155. <!-- <executions>-->
  156. <!-- <execution>-->
  157. <!-- <id>copy-dependencies</id>-->
  158. <!-- <phase>package</phase>-->
  159. <!-- <goals>-->
  160. <!-- <goal>copy-dependencies</goal>-->
  161. <!-- </goals>-->
  162. <!-- <configuration>-->
  163. <!-- <outputDirectory>${project.build.directory}/lib</outputDirectory>-->
  164. <!-- <overWriteReleases>false</overWriteReleases>-->
  165. <!-- <overWriteSnapshots>false</overWriteSnapshots>-->
  166. <!-- </configuration>-->
  167. <!-- </execution>-->
  168. <!-- </executions>-->
  169. <!-- </plugin>-->
  170. <!-- <plugin>-->
  171. <!-- <groupId>org.apache.maven.plugins</groupId>-->
  172. <!-- <artifactId>maven-shade-plugin</artifactId>-->
  173. <!-- <version>3.2.4</version>-->
  174. <!-- <executions>-->
  175. <!-- <execution>-->
  176. <!-- <phase>package</phase>-->
  177. <!-- <goals>-->
  178. <!-- <goal>shade</goal>-->
  179. <!-- </goals>-->
  180. <!-- <configuration>-->
  181. <!-- <transformers>-->
  182. <!-- &lt;!&ndash; <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">&ndash;&gt;-->
  183. <!-- &lt;!&ndash; <mainClass>com.example.MainClass</mainClass>&ndash;&gt;-->
  184. <!-- &lt;!&ndash; </transformer>&ndash;&gt;-->
  185. <!-- <transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">-->
  186. <!-- <resource>META-INF/spring.handlers</resource>-->
  187. <!-- </transformer>-->
  188. <!-- <transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">-->
  189. <!-- <resource>META-INF/spring.schemas</resource>-->
  190. <!-- </transformer>-->
  191. <!-- </transformers>-->
  192. <!-- </configuration>-->
  193. <!-- </execution>-->
  194. <!-- </executions>-->
  195. <!-- </plugin>-->
  196. <!-- </plugins>-->
  197. <!-- </build>-->
  198. </project>