pom.xml 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  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>3.4.2</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.smppw</groupId>
  12. <artifactId>mo-daq</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>mo-daq</name>
  15. <description>mo-daq</description>
  16. <properties>
  17. <java.version>17</java.version>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  20. <maven.compiler.source>17</maven.compiler.source>
  21. <maven.compiler.target>17</maven.compiler.target>
  22. <hutool.version>5.8.31</hutool.version>
  23. <mybatis-plus-boot3.version>3.5.7</mybatis-plus-boot3.version>
  24. <apahce-pdfbox.version>3.0.3</apahce-pdfbox.version>
  25. <tabula.version>1.0.5</tabula.version>
  26. </properties>
  27. <dependencies>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-web</artifactId>
  31. <exclusions>
  32. <exclusion>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-tomcat</artifactId>
  35. </exclusion>
  36. </exclusions>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-undertow</artifactId>
  41. </dependency>
  42. <!-- <dependency>-->
  43. <!-- <groupId>org.springframework.boot</groupId>-->
  44. <!-- <artifactId>spring-boot-starter-quartz</artifactId>-->
  45. <!-- </dependency>-->
  46. <dependency>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-starter-mail</artifactId>
  49. <exclusions>
  50. <exclusion>
  51. <groupId>org.eclipse.angus</groupId>
  52. <artifactId>jakarta.mail</artifactId>
  53. </exclusion>
  54. </exclusions>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.sun.mail</groupId>
  58. <artifactId>jakarta.mail</artifactId>
  59. <exclusions>
  60. <exclusion>
  61. <groupId>org.eclipse.angus</groupId>
  62. <artifactId>angus-mail</artifactId>
  63. </exclusion>
  64. </exclusions>
  65. <version>2.0.1</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.baomidou</groupId>
  69. <artifactId>mybatis-plus-spring-boot3-starter</artifactId>
  70. <version>${mybatis-plus-boot3.version}</version>
  71. </dependency>
  72. <!-- hutool 工具,按需引入 -->
  73. <dependency>
  74. <groupId>cn.hutool</groupId>
  75. <artifactId>hutool-all</artifactId>
  76. <version>${hutool.version}</version>
  77. </dependency>
  78. <!-- 压缩文件jar -->
  79. <dependency>
  80. <groupId>org.apache.commons</groupId>
  81. <artifactId>commons-compress</artifactId>
  82. <version>1.27.1</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.github.junrar</groupId>
  86. <artifactId>junrar</artifactId>
  87. <version>7.5.1</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>net.sf.sevenzipjbinding</groupId>
  91. <artifactId>sevenzipjbinding</artifactId>
  92. <version>16.02-2.01</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>net.sf.sevenzipjbinding</groupId>
  96. <artifactId>sevenzipjbinding-all-platforms</artifactId>
  97. <version>16.02-2.01</version>
  98. </dependency>
  99. <!-- pdf解析 -->
  100. <dependency>
  101. <groupId>org.apache.pdfbox</groupId>
  102. <artifactId>pdfbox</artifactId>
  103. <version>${apahce-pdfbox.version}</version>
  104. <exclusions>
  105. <exclusion>
  106. <groupId>org.slf4j</groupId>
  107. <artifactId>slf4j-simple</artifactId>
  108. </exclusion>
  109. </exclusions>
  110. </dependency>
  111. <dependency>
  112. <groupId>technology.tabula</groupId>
  113. <artifactId>tabula</artifactId>
  114. <version>${tabula.version}</version>
  115. <exclusions>
  116. <exclusion>
  117. <groupId>org.apache.pdfbox</groupId>
  118. <artifactId>pdfbox</artifactId>
  119. </exclusion>
  120. <exclusion>
  121. <groupId>org.apache.pdfbox</groupId>
  122. <artifactId>pdfbox-io</artifactId>
  123. </exclusion>
  124. <exclusion>
  125. <groupId>org.slf4j</groupId>
  126. <artifactId>slf4j-simple</artifactId>
  127. </exclusion>
  128. </exclusions>
  129. </dependency>
  130. <!-- &lt;!&ndash; 通义千问 ai &ndash;&gt;-->
  131. <!-- <dependency>-->
  132. <!-- <groupId>com.alibaba</groupId>-->
  133. <!-- <artifactId>dashscope-sdk-java</artifactId>-->
  134. <!-- <version>2.18.2</version>-->
  135. <!-- </dependency>-->
  136. <!-- <dependency>-->
  137. <!-- <groupId>com.squareup.okio</groupId>-->
  138. <!-- <artifactId>okio</artifactId>-->
  139. <!-- <version>3.6.0</version>-->
  140. <!-- </dependency>-->
  141. <!-- <dependency>-->
  142. <!-- <groupId>com.squareup.okhttp3</groupId>-->
  143. <!-- <artifactId>logging-interceptor</artifactId>-->
  144. <!-- <version>4.12.0</version>-->
  145. <!-- </dependency>-->
  146. <!-- <dependency>-->
  147. <!-- <groupId>com.squareup.okhttp3</groupId>-->
  148. <!-- <artifactId>okhttp-sse</artifactId>-->
  149. <!-- <version>4.12.0</version>-->
  150. <!-- </dependency>-->
  151. <!-- <dependency>-->
  152. <!-- <groupId>com.squareup.okhttp3</groupId>-->
  153. <!-- <artifactId>okhttp</artifactId>-->
  154. <!-- <version>4.12.0</version>-->
  155. <!-- </dependency>-->
  156. <dependency>
  157. <groupId>com.zaxxer</groupId>
  158. <artifactId>HikariCP</artifactId>
  159. </dependency>
  160. <dependency>
  161. <groupId>com.mysql</groupId>
  162. <artifactId>mysql-connector-j</artifactId>
  163. <scope>runtime</scope>
  164. </dependency>
  165. <dependency>
  166. <groupId>org.projectlombok</groupId>
  167. <artifactId>lombok</artifactId>
  168. <optional>true</optional>
  169. </dependency>
  170. <dependency>
  171. <groupId>org.springframework.boot</groupId>
  172. <artifactId>spring-boot-starter-test</artifactId>
  173. <scope>test</scope>
  174. </dependency>
  175. </dependencies>
  176. <build>
  177. <plugins>
  178. <plugin>
  179. <groupId>org.graalvm.buildtools</groupId>
  180. <artifactId>native-maven-plugin</artifactId>
  181. </plugin>
  182. <plugin>
  183. <groupId>org.springframework.boot</groupId>
  184. <artifactId>spring-boot-maven-plugin</artifactId>
  185. </plugin>
  186. </plugins>
  187. </build>
  188. </project>