pom.xml 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  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>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-starter-validation</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>io.minio</groupId>
  59. <artifactId>minio</artifactId>
  60. <version>${minio.version}</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.alibaba</groupId>
  64. <artifactId>easyexcel-core</artifactId>
  65. <version>3.3.2</version>
  66. <scope>compile</scope>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.reflections</groupId>
  70. <artifactId>reflections</artifactId>
  71. <version>0.9.10</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.bouncycastle</groupId>
  75. <artifactId>bcpkix-jdk15on</artifactId>
  76. <version>1.70</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.apache.httpcomponents.client5</groupId>
  80. <artifactId>httpclient5</artifactId>
  81. <version>5.2.1</version> <!-- 请使用最新版本 -->
  82. </dependency>
  83. <!--读取pdf-->
  84. <dependency>
  85. <groupId>org.apache.pdfbox</groupId>
  86. <artifactId>pdfbox</artifactId>
  87. <version>2.0.28</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>net.lingala.zip4j</groupId>
  91. <artifactId>zip4j</artifactId>
  92. <version>1.3.2</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>commons-httpclient</groupId>
  96. <artifactId>commons-httpclient</artifactId>
  97. <version>3.1</version>
  98. <scope>compile</scope>
  99. </dependency>
  100. <dependency>
  101. <groupId>io.netty</groupId>
  102. <artifactId>netty-codec-http</artifactId>
  103. </dependency>
  104. <dependency>
  105. <groupId>cn.hutool</groupId>
  106. <artifactId>hutool-all</artifactId>
  107. <version>5.8.26</version>
  108. <scope>compile</scope>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.springframework.cloud</groupId>
  112. <artifactId>spring-cloud-starter-openfeign</artifactId>
  113. </dependency>
  114. <dependency>
  115. <groupId>io.opentelemetry</groupId>
  116. <artifactId>opentelemetry-api</artifactId>
  117. <version>1.41.0</version>
  118. </dependency>
  119. <!--Gson 转化-->
  120. <dependency>
  121. <groupId>com.google.code.gson</groupId>
  122. <artifactId>gson</artifactId>
  123. <version>2.9.1</version>
  124. <scope>compile</scope>
  125. <exclusions>
  126. <exclusion>
  127. <artifactId>spring</artifactId>
  128. <groupId>*</groupId>
  129. </exclusion>
  130. <exclusion>
  131. <artifactId>c3p0</artifactId>
  132. <groupId>*</groupId>
  133. </exclusion>
  134. </exclusions>
  135. </dependency>
  136. </dependencies>
  137. <build>
  138. <plugins>
  139. <plugin>
  140. <groupId>org.apache.maven.plugins</groupId>
  141. <artifactId>maven-compiler-plugin</artifactId>
  142. <configuration>
  143. <source>14</source>
  144. <target>14</target>
  145. <!-- <annotationProcessorPaths>-->
  146. <!-- <path>-->
  147. <!-- <groupId>org.projectlombok</groupId>-->
  148. <!-- <artifactId>lombok</artifactId>-->
  149. <!-- </path>-->
  150. <!-- </annotationProcessorPaths>-->
  151. </configuration>
  152. </plugin>
  153. </plugins>
  154. </build>
  155. <!-- <build>-->
  156. <!-- <directory>${project.basedir}/target</directory>-->
  157. <!-- <plugins>-->
  158. <!-- <plugin>-->
  159. <!-- <groupId>org.apache.maven.plugins</groupId>-->
  160. <!-- <artifactId>maven-jar-plugin</artifactId>-->
  161. <!-- <configuration>-->
  162. <!-- <archive>-->
  163. <!-- <manifest>-->
  164. <!-- &lt;!&ndash;是否要把第三方jar放到manifest的classpath中&ndash;&gt;-->
  165. <!-- <addClasspath>true</addClasspath>-->
  166. <!-- &lt;!&ndash;生成的manifest中classpath的前缀,因为要把第三方jar放到lib目录下,所以classpath的前缀是lib/&ndash;&gt;-->
  167. <!-- <classpathPrefix>lib/</classpathPrefix>-->
  168. <!-- &lt;!&ndash; 打包时 MANIFEST.MF 文件不记录的时间戳版本 &ndash;&gt;-->
  169. <!-- <useUniqueVersions>false</useUniqueVersions>-->
  170. <!-- </manifest>-->
  171. <!-- <manifestEntries>-->
  172. <!-- &lt;!&ndash; 在 Class-Path 下添加配置文件的路径 &ndash;&gt;-->
  173. <!-- <Class-Path>config/</Class-Path>-->
  174. <!-- </manifestEntries>-->
  175. <!-- </archive>-->
  176. <!-- </configuration>-->
  177. <!-- </plugin>-->
  178. <!-- <plugin>-->
  179. <!-- <groupId>org.apache.maven.plugins</groupId>-->
  180. <!-- <artifactId>maven-dependency-plugin</artifactId>-->
  181. <!-- <executions>-->
  182. <!-- <execution>-->
  183. <!-- <id>copy-dependencies</id>-->
  184. <!-- <phase>package</phase>-->
  185. <!-- <goals>-->
  186. <!-- <goal>copy-dependencies</goal>-->
  187. <!-- </goals>-->
  188. <!-- <configuration>-->
  189. <!-- <outputDirectory>${project.build.directory}/lib</outputDirectory>-->
  190. <!-- <overWriteReleases>false</overWriteReleases>-->
  191. <!-- <overWriteSnapshots>false</overWriteSnapshots>-->
  192. <!-- </configuration>-->
  193. <!-- </execution>-->
  194. <!-- </executions>-->
  195. <!-- </plugin>-->
  196. <!-- <plugin>-->
  197. <!-- <groupId>org.apache.maven.plugins</groupId>-->
  198. <!-- <artifactId>maven-shade-plugin</artifactId>-->
  199. <!-- <version>3.2.4</version>-->
  200. <!-- <executions>-->
  201. <!-- <execution>-->
  202. <!-- <phase>package</phase>-->
  203. <!-- <goals>-->
  204. <!-- <goal>shade</goal>-->
  205. <!-- </goals>-->
  206. <!-- <configuration>-->
  207. <!-- <transformers>-->
  208. <!-- &lt;!&ndash; <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">&ndash;&gt;-->
  209. <!-- &lt;!&ndash; <mainClass>com.example.MainClass</mainClass>&ndash;&gt;-->
  210. <!-- &lt;!&ndash; </transformer>&ndash;&gt;-->
  211. <!-- <transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">-->
  212. <!-- <resource>META-INF/spring.handlers</resource>-->
  213. <!-- </transformer>-->
  214. <!-- <transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">-->
  215. <!-- <resource>META-INF/spring.schemas</resource>-->
  216. <!-- </transformer>-->
  217. <!-- </transformers>-->
  218. <!-- </configuration>-->
  219. <!-- </execution>-->
  220. <!-- </executions>-->
  221. <!-- </plugin>-->
  222. <!-- </plugins>-->
  223. <!-- </build>-->
  224. </project>