pom.xml 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  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.2.2</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.njuzr</groupId>
  12. <artifactId>EAI-Backend</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>EAI-Backend</name>
  15. <description>EAI-Backend</description>
  16. <repositories>
  17. <repository>
  18. <id>alimaven</id>
  19. <url>https://maven.aliyun.com/repository/central</url>
  20. </repository>
  21. </repositories>
  22. <dependencies>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-web</artifactId>
  26. <exclusions> <!--选择log4j2,则要排除掉Logback日志框架的依赖-->
  27. <exclusion>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-logging</artifactId>
  30. </exclusion>
  31. </exclusions>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-test</artifactId>
  36. <scope>test</scope>
  37. </dependency>
  38. <!--log4j2日志依赖-->
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-log4j2</artifactId>
  42. <version>3.2.2</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.projectlombok</groupId>
  46. <artifactId>lombok</artifactId>
  47. </dependency>
  48. <!--mysql和mybatis-plus-->
  49. <dependency>
  50. <groupId>com.baomidou</groupId>
  51. <artifactId>mybatis-plus-spring-boot3-starter</artifactId>
  52. <version>3.5.5</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.mybatis.spring.boot</groupId>
  56. <artifactId>mybatis-spring-boot-starter-test</artifactId>
  57. <version>3.0.3</version>
  58. <scope>test</scope>
  59. </dependency>
  60. <dependency>
  61. <groupId>mysql</groupId>
  62. <artifactId>mysql-connector-java</artifactId>
  63. <version>8.0.33</version>
  64. </dependency>
  65. <!--ModelMapper,对象转换-->
  66. <dependency>
  67. <groupId>org.modelmapper</groupId>
  68. <artifactId>modelmapper</artifactId>
  69. <version>3.2.0</version>
  70. </dependency>
  71. <!--spring security、jwt-->
  72. <dependency>
  73. <groupId>org.springframework.boot</groupId>
  74. <artifactId>spring-boot-starter-security</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.springframework.security</groupId>
  78. <artifactId>spring-security-jwt</artifactId>
  79. <version>1.1.1.RELEASE</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>io.jsonwebtoken</groupId>
  83. <artifactId>jjwt-api</artifactId>
  84. <version>0.12.5</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>io.jsonwebtoken</groupId>
  88. <artifactId>jjwt-impl</artifactId>
  89. <version>0.12.5</version>
  90. <scope>runtime</scope>
  91. </dependency>
  92. <dependency>
  93. <groupId>io.jsonwebtoken</groupId>
  94. <artifactId>jjwt-jackson</artifactId>
  95. <version>0.12.5</version>
  96. <scope>runtime</scope>
  97. </dependency>
  98. <!--excel依赖-->
  99. <dependency>
  100. <groupId>org.apache.poi</groupId>
  101. <artifactId>poi-ooxml</artifactId>
  102. <version>5.3.0</version>
  103. </dependency>
  104. <!-- 添加 POI 核心依赖,解决 AWT 问题 -->
  105. <dependency>
  106. <groupId>org.apache.poi</groupId>
  107. <artifactId>poi</artifactId>
  108. <version>5.3.0</version>
  109. </dependency>
  110. <!--csv依赖-->
  111. <dependency>
  112. <groupId>com.opencsv</groupId>
  113. <artifactId>opencsv</artifactId>
  114. <version>5.9</version>
  115. </dependency>
  116. <!--邮箱依赖-->
  117. <dependency>
  118. <groupId>org.springframework.boot</groupId>
  119. <artifactId>spring-boot-starter-mail</artifactId>
  120. </dependency>
  121. <!--Bean Validation依赖-->
  122. <dependency>
  123. <groupId>org.springframework.boot</groupId>
  124. <artifactId>spring-boot-starter-validation</artifactId>
  125. </dependency>
  126. <!--其中包含WebClient依赖-->
  127. <dependency>
  128. <groupId>org.springframework.boot</groupId>
  129. <artifactId>spring-boot-starter-webflux</artifactId>
  130. </dependency>
  131. <!--Redis依赖-->
  132. <dependency>
  133. <groupId>org.springframework.boot</groupId>
  134. <artifactId>spring-boot-starter-data-redis</artifactId>
  135. </dependency>
  136. <!-- MongoDB依赖 -->
  137. <dependency>
  138. <groupId>org.springframework.boot</groupId>
  139. <artifactId>spring-boot-starter-data-mongodb</artifactId>
  140. </dependency>
  141. <!-- OSS依赖-->
  142. <dependency>
  143. <groupId>com.aliyun.oss</groupId>
  144. <artifactId>aliyun-sdk-oss</artifactId>
  145. <version>3.17.4</version>
  146. </dependency>
  147. <!-- fastjson2依赖 -->
  148. <dependency>
  149. <groupId>com.alibaba.fastjson2</groupId>
  150. <artifactId>fastjson2</artifactId>
  151. <version>2.0.47</version>
  152. </dependency>
  153. <!-- poi-ooxml依赖 -->
  154. <dependency>
  155. <groupId>org.apache.poi</groupId>
  156. <artifactId>poi-ooxml</artifactId>
  157. <version>5.3.0</version>
  158. </dependency>
  159. <!-- 豆包大语言模型依赖 -->
  160. <dependency>
  161. <groupId>com.volcengine</groupId>
  162. <artifactId>volcengine-java-sdk-ark-runtime</artifactId>
  163. <version>0.2.9</version>
  164. </dependency>
  165. <!-- 讯飞语音合成依赖 -->
  166. <dependency>
  167. <groupId>cn.xfyun</groupId>
  168. <artifactId>websdk-java-speech</artifactId>
  169. <version>2.0.3</version>
  170. </dependency>
  171. <dependency>
  172. <groupId>com.squareup.okhttp3</groupId>
  173. <artifactId>okhttp</artifactId>
  174. <version>3.14.2</version>
  175. </dependency>
  176. <dependency>
  177. <groupId>org.springdoc</groupId>
  178. <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
  179. <version>2.1.0</version>
  180. </dependency>
  181. <dependency>
  182. <groupId>org.springframework.boot</groupId>
  183. <artifactId>spring-boot-starter-freemarker</artifactId>
  184. </dependency>
  185. <!-- Jsoup HTML解析 -->
  186. <dependency>
  187. <groupId>org.jsoup</groupId>
  188. <artifactId>jsoup</artifactId>
  189. <version>1.15.3</version>
  190. </dependency>
  191. <!-- ZIP压缩 -->
  192. <dependency>
  193. <groupId>net.lingala.zip4j</groupId>
  194. <artifactId>zip4j</artifactId>
  195. <version>2.11.5</version>
  196. </dependency>
  197. <!-- 斯坦福大学自然语言处理工具包CoreNLP -->
  198. <dependency>
  199. <groupId>edu.stanford.nlp</groupId>
  200. <artifactId>stanford-corenlp</artifactId>
  201. <version>4.5.8</version>
  202. </dependency>
  203. </dependencies>
  204. <build>
  205. <plugins>
  206. <plugin>
  207. <groupId>org.springframework.boot</groupId>
  208. <artifactId>spring-boot-maven-plugin</artifactId>
  209. <configuration>
  210. <excludes>
  211. <exclude>
  212. <groupId>org.projectlombok</groupId>
  213. <artifactId>lombok</artifactId>
  214. </exclude>
  215. </excludes>
  216. </configuration>
  217. </plugin>
  218. <plugin>
  219. <groupId>org.apache.maven.plugins</groupId>
  220. <artifactId>maven-surefire-plugin</artifactId>
  221. <configuration>
  222. <testFailureIgnore>true</testFailureIgnore>
  223. </configuration>
  224. </plugin>
  225. </plugins>
  226. </build>
  227. </project>