pom.xml 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341
  1. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <parent>
  4. <groupId>org.springframework.boot</groupId>
  5. <artifactId>spring-boot-starter-parent</artifactId>
  6. <version>3.1.3</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <groupId>cn.cslg</groupId>
  10. <artifactId>wdc</artifactId>
  11. <version>0.0.1-SNAPSHOT</version>
  12. <packaging>jar</packaging>
  13. <name>wdc</name>
  14. <description>Word差异对比文件系统</description>
  15. <properties>
  16. <java.version>8</java.version>
  17. <jwt.version>0.9.0</jwt.version>
  18. <commons.io.version>2.5</commons.io.version>
  19. <mybatisplus.version>3.5.3.1</mybatisplus.version>
  20. <google.code.gson.version>2.7</google.code.gson.version>
  21. <hutool.version>5.6.5</hutool.version>
  22. <okhttps.version>4.10.0</okhttps.version>
  23. <poi.version>4.1.2</poi.version>
  24. <poi-tl.version>1.10.3</poi-tl.version>
  25. <druid.version>1.1.20</druid.version>
  26. <fastjson.version>2.0.12</fastjson.version>
  27. <sa-token.version>1.29.0</sa-token.version>
  28. <springdoc.version>1.6.6</springdoc.version>
  29. <elasticsearch.version>8.6.1</elasticsearch.version>
  30. </properties>
  31. <dependencies>
  32. <dependency>
  33. <groupId>org.springdoc</groupId>
  34. <artifactId>springdoc-openapi-ui</artifactId>
  35. <version>${springdoc.version}</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-aop</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.deepoove</groupId>
  43. <artifactId>poi-tl</artifactId>
  44. <version>${poi-tl.version}</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>cn.dev33</groupId>
  48. <artifactId>sa-token-spring-boot-starter</artifactId>
  49. <version>${sa-token.version}</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>cn.dev33</groupId>
  53. <artifactId>sa-token-dao-redis-jackson</artifactId>
  54. <version>${sa-token.version}</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.alibaba</groupId>
  58. <artifactId>druid-spring-boot-starter</artifactId>
  59. <version>${druid.version}</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.alibaba</groupId>
  63. <artifactId>fastjson</artifactId>
  64. <version>${fastjson.version}</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.apache.commons</groupId>
  68. <artifactId>commons-compress</artifactId>
  69. <version>1.21</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>commons-io</groupId>
  73. <artifactId>commons-io</artifactId>
  74. <version>2.6</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>io.jsonwebtoken</groupId>
  78. <artifactId>jjwt</artifactId>
  79. <version>${jwt.version}</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.ejlchina</groupId>
  83. <artifactId>okhttps</artifactId>
  84. <version>3.1.1</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.squareup.okhttp3</groupId>
  88. <artifactId>okhttp</artifactId>
  89. <version>3.14.9</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.springframework.boot</groupId>
  93. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  94. </dependency>
  95. <dependency>
  96. <groupId>cn.hutool</groupId>
  97. <artifactId>hutool-all</artifactId>
  98. <version>${hutool.version}</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>com.google.code.gson</groupId>
  102. <artifactId>gson</artifactId>
  103. </dependency>
  104. <dependency>
  105. <groupId>org.mybatis</groupId>
  106. <artifactId>mybatis-typehandlers-jsr310</artifactId>
  107. <version>1.0.2</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>com.baomidou</groupId>
  111. <artifactId>mybatis-plus-boot-starter</artifactId>
  112. <version>${mybatisplus.version}</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.springframework.boot</groupId>
  116. <artifactId>spring-boot-starter-data-redis</artifactId>
  117. </dependency>
  118. <dependency>
  119. <groupId>org.springframework.boot</groupId>
  120. <artifactId>spring-boot-starter-web</artifactId>
  121. <version>3.1.3</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.springframework.boot</groupId>
  125. <artifactId>spring-boot-starter-websocket</artifactId>
  126. </dependency>
  127. <dependency>
  128. <groupId>org.apache.commons</groupId>
  129. <artifactId>commons-pool2</artifactId>
  130. </dependency>
  131. <dependency>
  132. <groupId>com.mysql</groupId>
  133. <artifactId>mysql-connector-j</artifactId>
  134. <scope>runtime</scope>
  135. </dependency>
  136. <dependency>
  137. <groupId>org.projectlombok</groupId>
  138. <artifactId>lombok</artifactId>
  139. <optional>true</optional>
  140. </dependency>
  141. <dependency>
  142. <groupId>junit</groupId>
  143. <artifactId>junit</artifactId>
  144. </dependency>
  145. <dependency>
  146. <groupId>org.apache.poi</groupId>
  147. <artifactId>poi</artifactId>
  148. <version>${poi.version}</version>
  149. </dependency>
  150. <dependency>
  151. <groupId>org.apache.poi</groupId>
  152. <artifactId>poi-ooxml</artifactId>
  153. <version>${poi.version}</version>
  154. </dependency>
  155. <dependency>
  156. <groupId>org.apache.poi</groupId>
  157. <artifactId>poi-scratchpad</artifactId>
  158. <version>${poi.version}</version>
  159. </dependency>
  160. <dependency>
  161. <groupId>commons-fileupload</groupId>
  162. <artifactId>commons-fileupload</artifactId>
  163. <version>1.3.3</version>
  164. </dependency>
  165. <dependency>
  166. <groupId>com.github.pagehelper</groupId>
  167. <artifactId>pagehelper-spring-boot-starter</artifactId>
  168. <version>1.4.0</version>
  169. </dependency>
  170. <dependency>
  171. <groupId>org.springframework.boot</groupId>
  172. <artifactId>spring-boot-starter-test</artifactId>
  173. <scope>test</scope>
  174. </dependency>
  175. <dependency>
  176. <groupId>org.springframework.boot</groupId>
  177. <artifactId>spring-boot-starter-quartz</artifactId>
  178. </dependency>
  179. <dependency>
  180. <groupId>com.mchange</groupId>
  181. <artifactId>c3p0</artifactId>
  182. <version>0.9.5.2</version>
  183. </dependency>
  184. <dependency>
  185. <groupId>org.apache.commons</groupId>
  186. <artifactId>commons-text</artifactId>
  187. <version>1.11.0</version>
  188. </dependency>
  189. <dependency>
  190. <groupId>org.jsoup</groupId>
  191. <artifactId>jsoup</artifactId>
  192. <version>1.14.3</version>
  193. </dependency>
  194. <!-- Selenium WebDriver -->
  195. <dependency>
  196. <groupId>org.seleniumhq.selenium</groupId>
  197. <artifactId>selenium-java</artifactId>
  198. <version>4.25.0</version>
  199. </dependency>
  200. <dependency>
  201. <groupId>joda-time</groupId>
  202. <artifactId>joda-time</artifactId>
  203. <version>2.9.9</version>
  204. </dependency>
  205. <dependency>
  206. <groupId>org.antlr</groupId>
  207. <artifactId>antlr4-runtime</artifactId>
  208. <version>4.12.0</version>
  209. </dependency>
  210. <dependency>
  211. <groupId>org.apache.pdfbox</groupId>
  212. <artifactId>pdfbox</artifactId>
  213. <version>2.0.16</version>
  214. </dependency>
  215. <dependency>
  216. <groupId>org.springframework.boot</groupId>
  217. <artifactId>spring-boot-starter-data-elasticsearch</artifactId>
  218. </dependency>
  219. <dependency>
  220. <groupId>dom4j</groupId>
  221. <artifactId>dom4j</artifactId>
  222. <version>1.6.1</version>
  223. </dependency>
  224. <dependency>
  225. <groupId>jaxen</groupId>
  226. <artifactId>jaxen</artifactId>
  227. <version>1.2.0</version> <!-- 使用你需要的版本 -->
  228. </dependency>
  229. <dependency>
  230. <groupId>org.springframework</groupId>
  231. <artifactId>spring-test</artifactId>
  232. </dependency>
  233. <dependency>
  234. <groupId>org.springframework.boot</groupId>
  235. <artifactId>spring-boot-starter-amqp</artifactId>
  236. </dependency>
  237. <!-- poi-->
  238. <dependency>
  239. <groupId>io.github.draco1023</groupId>
  240. <artifactId>poi-tl-ext</artifactId>
  241. <version>0.4.2</version>
  242. </dependency>
  243. <dependency>
  244. <groupId>commons-beanutils</groupId>
  245. <artifactId>commons-beanutils</artifactId>
  246. <version>1.9.3</version>
  247. </dependency>
  248. <dependency>
  249. <groupId>com.aliyun</groupId>
  250. <artifactId>alimt20181012</artifactId>
  251. <version>1.3.1</version>
  252. </dependency>
  253. <!--中文分词器-->
  254. <dependency>
  255. <groupId>com.hankcs</groupId>
  256. <artifactId>hanlp</artifactId>
  257. <version>portable-1.7.8</version>
  258. </dependency>
  259. <dependency>
  260. <groupId>org.apache.commons</groupId>
  261. <artifactId>commons-math3</artifactId>
  262. <version>3.6.1</version>
  263. </dependency>
  264. </dependencies>
  265. <build>
  266. <finalName>WDC_PROD_TEST</finalName>
  267. <plugins>
  268. <plugin>
  269. <groupId>org.springframework.boot</groupId>
  270. <artifactId>spring-boot-maven-plugin</artifactId>
  271. <configuration>
  272. <includeSystemScope>true</includeSystemScope>
  273. <!-- 指定该Main Class为全局的唯一入口 -->
  274. <mainClass>cn.cslg.pas.Application</mainClass>
  275. <layout>ZIP</layout>
  276. <excludes>
  277. <exclude>
  278. <groupId>org.projectlombok</groupId>
  279. <artifactId>lombok</artifactId>
  280. </exclude>
  281. </excludes>
  282. </configuration>
  283. <executions>
  284. <execution>
  285. <goals>
  286. <goal>repackage</goal><!--可以把依赖的包都打包到生成的Jar包中-->
  287. </goals>
  288. </execution>
  289. </executions>
  290. </plugin>
  291. <plugin>
  292. <groupId>org.apache.maven.plugins</groupId>
  293. <artifactId>maven-compiler-plugin</artifactId>
  294. <configuration>
  295. <source>8</source>
  296. <target>8</target>
  297. </configuration>
  298. </plugin>
  299. <plugin>
  300. <groupId>org.apache.maven.plugins</groupId>
  301. <artifactId>maven-compiler-plugin</artifactId>
  302. <configuration>
  303. <source>17</source>
  304. <target>17</target>
  305. </configuration>
  306. </plugin>
  307. </plugins>
  308. </build>
  309. <!--阿里云镜像源(因需要提交到GithubActions,会引起依赖下载过慢的问题)-->
  310. <repositories>
  311. <repository>
  312. <id>nexus-aliyun</id>
  313. <name>nexus-aliyun</name>
  314. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  315. <releases>
  316. <enabled>true</enabled>
  317. </releases>
  318. <snapshots>
  319. <enabled>false</enabled>
  320. </snapshots>
  321. </repository>
  322. <repository>
  323. <id>com.e-iceblue</id>
  324. <name>e-iceblue</name>
  325. <url>http://repo.e-iceblue.com/nexus/content/groups/public/</url>
  326. </repository>
  327. </repositories>
  328. </project>