pom.xml 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352
  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>2.7.17</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.fxy</groupId>
  12. <artifactId>fxy</artifactId>
  13. <version>0.0.1</version>
  14. <name>fxy</name>
  15. <description>fxy</description>
  16. <properties>
  17. <java.version>11</java.version>
  18. </properties>
  19. <dependencies>
  20. <!-- Docx4J core -->
  21. <dependency>
  22. <groupId>org.docx4j</groupId>
  23. <artifactId>docx4j-JAXB-Internal</artifactId>
  24. <version>8.3.14</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.docx4j</groupId>
  28. <artifactId>docx4j-JAXB-ReferenceImpl</artifactId>
  29. <version>11.4.9</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.docx4j</groupId>
  33. <artifactId>docx4j-export-fo</artifactId>
  34. <version>11.4.9</version>
  35. </dependency>
  36. <!-- iText for PDF conversion -->
  37. <dependency>
  38. <groupId>com.itextpdf</groupId>
  39. <artifactId>itextpdf</artifactId>
  40. <version>5.5.13.3</version>
  41. </dependency>
  42. <!-- https://mvnrepository.com/artifact/jakarta.xml.bind/jakarta.xml.bind-api -->
  43. <dependency>
  44. <groupId>jakarta.xml.bind</groupId>
  45. <artifactId>jakarta.xml.bind-api</artifactId>
  46. <version>4.0.2</version>
  47. </dependency>
  48. <!-- https://mvnrepository.com/artifact/org.glassfish.jaxb/jaxb-runtime -->
  49. <dependency>
  50. <groupId>org.glassfish.jaxb</groupId>
  51. <artifactId>jaxb-runtime</artifactId>
  52. <version>4.0.5</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>jakarta.activation</groupId>
  56. <artifactId>jakarta.activation-api</artifactId>
  57. <version>2.0.1</version>
  58. </dependency>
  59. <!-- JAXB API -->
  60. <dependency>
  61. <groupId>javax.xml.bind</groupId>
  62. <artifactId>jaxb-api</artifactId>
  63. <version>2.3.1</version>
  64. </dependency>
  65. <!-- JAXB implementation (JAXB RI) -->
  66. <dependency>
  67. <groupId>com.sun.xml.bind</groupId>
  68. <artifactId>jaxb-impl</artifactId>
  69. <version>2.3.1</version>
  70. </dependency>
  71. <!-- Activation framework -->
  72. <dependency>
  73. <groupId>javax.activation</groupId>
  74. <artifactId>javax.activation-api</artifactId>
  75. <version>1.2.0</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.apache.commons</groupId>
  79. <artifactId>commons-compress</artifactId>
  80. <version>1.23.0</version>
  81. </dependency>
  82. <!-- Apache PDFBox -->
  83. <dependency>
  84. <groupId>org.apache.pdfbox</groupId>
  85. <artifactId>pdfbox</artifactId>
  86. <version>2.0.27</version>
  87. </dependency>
  88. <!-- https://mvnrepository.com/artifact/org.freemarker/freemarker -->
  89. <dependency>
  90. <groupId>org.freemarker</groupId>
  91. <artifactId>freemarker</artifactId>
  92. <version>2.3.34</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.springframework.boot</groupId>
  96. <artifactId>spring-boot-starter-data-mongodb</artifactId>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.apache.poi</groupId>
  100. <artifactId>poi-ooxml</artifactId>
  101. <version>3.15</version>
  102. <exclusions>
  103. <exclusion>
  104. <groupId>org.apache.commons</groupId>
  105. <artifactId>commons-compress</artifactId>
  106. </exclusion>
  107. </exclusions>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.apache.poi</groupId>
  111. <artifactId>poi-ooxml-schemas</artifactId>
  112. <version>3.15</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.apache.poi</groupId>
  116. <artifactId>poi</artifactId>
  117. <version>3.15</version>
  118. </dependency>
  119. <!-- Apache POI -->
  120. <dependency>
  121. <groupId>org.apache.poi</groupId>
  122. <artifactId>poi</artifactId>
  123. <version>5.2.3</version>
  124. </dependency>
  125. <!-- poi-scratchpad for PDF conversion -->
  126. <dependency>
  127. <groupId>org.apache.poi</groupId>
  128. <artifactId>poi-scratchpad</artifactId>
  129. <version>5.2.3</version>
  130. </dependency>
  131. <dependency>
  132. <groupId>org.apache.poi</groupId>
  133. <artifactId>poi-ooxml</artifactId>
  134. <version>5.2.3</version>
  135. </dependency>
  136. <!-- 图像处理支持 -->
  137. <dependency>
  138. <groupId>com.twelvemonkeys.imageio</groupId>
  139. <artifactId>imageio-jpeg</artifactId>
  140. <version>3.9.4</version>
  141. </dependency>
  142. <dependency>
  143. <groupId>com.twelvemonkeys.imageio</groupId>
  144. <artifactId>imageio-tiff</artifactId>
  145. <version>3.9.4</version>
  146. </dependency>
  147. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-imaging -->
  148. <dependency>
  149. <groupId>org.apache.commons</groupId>
  150. <artifactId>commons-imaging</artifactId>
  151. <version>1.0.0-alpha5</version>
  152. </dependency>
  153. <!-- https://mvnrepository.com/artifact/com.alibaba.fastjson2/fastjson2 -->
  154. <dependency>
  155. <groupId>com.alibaba.fastjson2</groupId>
  156. <artifactId>fastjson2</artifactId>
  157. <version>2.0.56</version>
  158. </dependency>
  159. <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind -->
  160. <dependency>
  161. <groupId>com.fasterxml.jackson.core</groupId>
  162. <artifactId>jackson-databind</artifactId>
  163. <version>2.18.3</version>
  164. </dependency>
  165. <dependency>
  166. <groupId>org.apache.pdfbox</groupId>
  167. <artifactId>pdfbox</artifactId>
  168. <version>2.0.27</version>
  169. </dependency>
  170. <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.datatype/jackson-datatype-jsr310 -->
  171. <dependency>
  172. <groupId>com.fasterxml.jackson.datatype</groupId>
  173. <artifactId>jackson-datatype-jsr310</artifactId>
  174. <version>2.18.3</version>
  175. </dependency>
  176. <dependency>
  177. <groupId>org.springframework.boot</groupId>
  178. <artifactId>spring-boot-starter-web</artifactId>
  179. </dependency>
  180. <dependency>
  181. <groupId>org.springframework.boot</groupId>
  182. <artifactId>spring-boot-starter-data-redis</artifactId>
  183. </dependency>
  184. <dependency>
  185. <groupId>org.springframework.boot</groupId>
  186. <artifactId>spring-boot-starter-aop</artifactId>
  187. </dependency>
  188. <dependency>
  189. <groupId>org.springframework.boot</groupId>
  190. <artifactId>spring-boot-starter-freemarker</artifactId>
  191. </dependency>
  192. <dependency>
  193. <groupId>com.mysql</groupId>
  194. <artifactId>mysql-connector-j</artifactId>
  195. <version>8.3.0</version>
  196. <scope>runtime</scope>
  197. </dependency>
  198. <dependency>
  199. <groupId>org.projectlombok</groupId>
  200. <artifactId>lombok</artifactId>
  201. <optional>true</optional>
  202. </dependency>
  203. <dependency>
  204. <groupId>org.springframework.boot</groupId>
  205. <artifactId>spring-boot-starter-test</artifactId>
  206. <scope>test</scope>
  207. </dependency>
  208. <!--数据库语句监听-->
  209. <dependency>
  210. <groupId>p6spy</groupId>
  211. <artifactId>p6spy</artifactId>
  212. <version>3.8.7</version>
  213. </dependency>
  214. <!--mybatis-plus-->
  215. <dependency>
  216. <groupId>com.baomidou</groupId>
  217. <artifactId>mybatis-plus-boot-starter</artifactId>
  218. <version>3.5.4</version>
  219. </dependency>
  220. <!-- 代码生成器依赖-->
  221. <dependency>
  222. <groupId>com.baomidou</groupId>
  223. <artifactId>mybatis-plus-generator</artifactId>
  224. <version>3.5.4</version>
  225. </dependency>
  226. <!-- https://mvnrepository.com/artifact/org.apache.xmlgraphics/fop -->
  227. <dependency>
  228. <groupId>org.apache.xmlgraphics</groupId>
  229. <artifactId>fop</artifactId>
  230. <version>2.10</version>
  231. </dependency>
  232. <!--多数据源-->
  233. <dependency>
  234. <groupId>com.baomidou</groupId>
  235. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  236. <version>3.6.1</version>
  237. </dependency>
  238. <dependency>
  239. <groupId>cn.hutool</groupId>
  240. <artifactId>hutool-all</artifactId>
  241. <version>5.8.25</version>
  242. </dependency>
  243. <dependency>
  244. <groupId>com.auth0</groupId>
  245. <artifactId>java-jwt</artifactId>
  246. <version>3.9.0</version>
  247. </dependency>
  248. <!--swagger-->
  249. <dependency>
  250. <groupId>io.springfox</groupId>
  251. <artifactId>springfox-swagger2</artifactId>
  252. <version>2.9.2</version>
  253. </dependency>
  254. <dependency>
  255. <groupId>io.springfox</groupId>
  256. <artifactId>springfox-swagger-ui</artifactId>
  257. <version>2.10.0</version>
  258. </dependency>
  259. <!--swagger-ui的bootstrap风格ui-->
  260. <dependency>
  261. <groupId>com.github.xiaoymin</groupId>
  262. <artifactId>swagger-bootstrap-ui</artifactId>
  263. <version>1.9.6</version>
  264. </dependency>
  265. <!--fastJson-->
  266. <dependency>
  267. <groupId>com.alibaba</groupId>
  268. <artifactId>fastjson</artifactId>
  269. <version>2.0.0</version>
  270. </dependency>
  271. <dependency>
  272. <groupId>commons-codec</groupId>
  273. <artifactId>commons-codec</artifactId>
  274. <version>1.14</version>
  275. </dependency>
  276. <dependency>
  277. <groupId>org.apache.httpcomponents</groupId>
  278. <artifactId>httpclient</artifactId>
  279. <version>4.5.13</version>
  280. </dependency>
  281. <dependency>
  282. <groupId>com.github.yulichang</groupId>
  283. <artifactId>mybatis-plus-join-boot-starter</artifactId>
  284. <version>1.4.3.2</version>
  285. </dependency>
  286. <!-- 添加javax.validation依赖 -->
  287. <dependency>
  288. <groupId>javax.validation</groupId>
  289. <artifactId>validation-api</artifactId>
  290. <version>2.0.1.Final</version>
  291. </dependency>
  292. <dependency>
  293. <groupId>commons-lang</groupId>
  294. <artifactId>commons-lang</artifactId>
  295. <version>2.5</version>
  296. </dependency>
  297. <dependency>
  298. <groupId>com.github.houbb</groupId>
  299. <artifactId>pinyin</artifactId>
  300. <version>0.3.1</version>
  301. </dependency>
  302. </dependencies>
  303. <build>
  304. <plugins>
  305. <plugin>
  306. <groupId>org.springframework.boot</groupId>
  307. <artifactId>spring-boot-maven-plugin</artifactId>
  308. <configuration>
  309. <excludes>
  310. <exclude>
  311. <groupId>org.projectlombok</groupId>
  312. <artifactId>lombok</artifactId>
  313. </exclude>
  314. </excludes>
  315. </configuration>
  316. </plugin>
  317. </plugins>
  318. </build>
  319. </project>