pom.xml 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258
  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. <!-- https://mvnrepository.com/artifact/org.freemarker/freemarker -->
  21. <dependency>
  22. <groupId>org.freemarker</groupId>
  23. <artifactId>freemarker</artifactId>
  24. <version>2.3.34</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-data-mongodb</artifactId>
  29. </dependency>
  30. <!-- Apache POI -->
  31. <dependency>
  32. <groupId>org.apache.poi</groupId>
  33. <artifactId>poi</artifactId>
  34. <version>5.2.3</version>
  35. </dependency>
  36. <!-- poi-scratchpad for PDF conversion -->
  37. <dependency>
  38. <groupId>org.apache.poi</groupId>
  39. <artifactId>poi-scratchpad</artifactId>
  40. <version>5.2.3</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.apache.poi</groupId>
  44. <artifactId>poi-ooxml</artifactId>
  45. <version>5.2.3</version>
  46. </dependency>
  47. <!-- 图像处理支持 -->
  48. <dependency>
  49. <groupId>com.twelvemonkeys.imageio</groupId>
  50. <artifactId>imageio-jpeg</artifactId>
  51. <version>3.9.4</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.twelvemonkeys.imageio</groupId>
  55. <artifactId>imageio-tiff</artifactId>
  56. <version>3.9.4</version>
  57. </dependency>
  58. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-imaging -->
  59. <dependency>
  60. <groupId>org.apache.commons</groupId>
  61. <artifactId>commons-imaging</artifactId>
  62. <version>1.0.0-alpha5</version>
  63. </dependency>
  64. <!-- https://mvnrepository.com/artifact/com.alibaba.fastjson2/fastjson2 -->
  65. <dependency>
  66. <groupId>com.alibaba.fastjson2</groupId>
  67. <artifactId>fastjson2</artifactId>
  68. <version>2.0.56</version>
  69. </dependency>
  70. <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind -->
  71. <dependency>
  72. <groupId>com.fasterxml.jackson.core</groupId>
  73. <artifactId>jackson-databind</artifactId>
  74. <version>2.18.3</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.apache.pdfbox</groupId>
  78. <artifactId>pdfbox</artifactId>
  79. <version>2.0.27</version>
  80. </dependency>
  81. <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.datatype/jackson-datatype-jsr310 -->
  82. <dependency>
  83. <groupId>com.fasterxml.jackson.datatype</groupId>
  84. <artifactId>jackson-datatype-jsr310</artifactId>
  85. <version>2.18.3</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.springframework.boot</groupId>
  89. <artifactId>spring-boot-starter-web</artifactId>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.springframework.boot</groupId>
  93. <artifactId>spring-boot-starter-data-redis</artifactId>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.springframework.boot</groupId>
  97. <artifactId>spring-boot-starter-aop</artifactId>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.springframework.boot</groupId>
  101. <artifactId>spring-boot-starter-freemarker</artifactId>
  102. </dependency>
  103. <dependency>
  104. <groupId>com.mysql</groupId>
  105. <artifactId>mysql-connector-j</artifactId>
  106. <version>8.3.0</version>
  107. <scope>runtime</scope>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.projectlombok</groupId>
  111. <artifactId>lombok</artifactId>
  112. <optional>true</optional>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.springframework.boot</groupId>
  116. <artifactId>spring-boot-starter-test</artifactId>
  117. <scope>test</scope>
  118. </dependency>
  119. <!--数据库语句监听-->
  120. <dependency>
  121. <groupId>p6spy</groupId>
  122. <artifactId>p6spy</artifactId>
  123. <version>3.8.7</version>
  124. </dependency>
  125. <!--mybatis-plus-->
  126. <dependency>
  127. <groupId>com.baomidou</groupId>
  128. <artifactId>mybatis-plus-boot-starter</artifactId>
  129. <version>3.5.4</version>
  130. </dependency>
  131. <!-- 代码生成器依赖-->
  132. <dependency>
  133. <groupId>com.baomidou</groupId>
  134. <artifactId>mybatis-plus-generator</artifactId>
  135. <version>3.5.4</version>
  136. </dependency>
  137. <!-- https://mvnrepository.com/artifact/org.apache.xmlgraphics/fop -->
  138. <dependency>
  139. <groupId>org.apache.xmlgraphics</groupId>
  140. <artifactId>fop</artifactId>
  141. <version>2.10</version>
  142. </dependency>
  143. <!--多数据源-->
  144. <dependency>
  145. <groupId>com.baomidou</groupId>
  146. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  147. <version>3.6.1</version>
  148. </dependency>
  149. <dependency>
  150. <groupId>cn.hutool</groupId>
  151. <artifactId>hutool-all</artifactId>
  152. <version>5.8.25</version>
  153. </dependency>
  154. <dependency>
  155. <groupId>com.auth0</groupId>
  156. <artifactId>java-jwt</artifactId>
  157. <version>3.9.0</version>
  158. </dependency>
  159. <!--swagger-->
  160. <dependency>
  161. <groupId>io.springfox</groupId>
  162. <artifactId>springfox-swagger2</artifactId>
  163. <version>2.9.2</version>
  164. </dependency>
  165. <dependency>
  166. <groupId>io.springfox</groupId>
  167. <artifactId>springfox-swagger-ui</artifactId>
  168. <version>2.10.0</version>
  169. </dependency>
  170. <!--swagger-ui的bootstrap风格ui-->
  171. <dependency>
  172. <groupId>com.github.xiaoymin</groupId>
  173. <artifactId>swagger-bootstrap-ui</artifactId>
  174. <version>1.9.6</version>
  175. </dependency>
  176. <!--fastJson-->
  177. <dependency>
  178. <groupId>com.alibaba</groupId>
  179. <artifactId>fastjson</artifactId>
  180. <version>2.0.0</version>
  181. </dependency>
  182. <dependency>
  183. <groupId>commons-codec</groupId>
  184. <artifactId>commons-codec</artifactId>
  185. <version>1.14</version>
  186. </dependency>
  187. <dependency>
  188. <groupId>org.apache.httpcomponents</groupId>
  189. <artifactId>httpclient</artifactId>
  190. <version>4.5.13</version>
  191. </dependency>
  192. <dependency>
  193. <groupId>com.github.yulichang</groupId>
  194. <artifactId>mybatis-plus-join-boot-starter</artifactId>
  195. <version>1.4.3.2</version>
  196. </dependency>
  197. <!-- 添加javax.validation依赖 -->
  198. <dependency>
  199. <groupId>javax.validation</groupId>
  200. <artifactId>validation-api</artifactId>
  201. <version>2.0.1.Final</version>
  202. </dependency>
  203. <dependency>
  204. <groupId>commons-lang</groupId>
  205. <artifactId>commons-lang</artifactId>
  206. <version>2.5</version>
  207. </dependency>
  208. <dependency>
  209. <groupId>com.github.houbb</groupId>
  210. <artifactId>pinyin</artifactId>
  211. <version>0.3.1</version>
  212. </dependency>
  213. </dependencies>
  214. <build>
  215. <plugins>
  216. <plugin>
  217. <groupId>org.springframework.boot</groupId>
  218. <artifactId>spring-boot-maven-plugin</artifactId>
  219. <configuration>
  220. <excludes>
  221. <exclude>
  222. <groupId>org.projectlombok</groupId>
  223. <artifactId>lombok</artifactId>
  224. </exclude>
  225. </excludes>
  226. </configuration>
  227. </plugin>
  228. </plugins>
  229. </build>
  230. </project>