deepseek大模型api
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

290 lines
8.5 KiB

3 months ago
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://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.2.4.RELEASE</version>
  9. </parent>
  10. <groupId>com.bw</groupId>
  11. <artifactId>deepseek_model</artifactId>
  12. <version>0.0.1-SNAPSHOT</version>
  13. <packaging>jar</packaging>
  14. <name>deepseek_model</name>
  15. <url>http://maven.apache.org</url>
  16. <properties>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. <maven.compiler.source>1.8</maven.compiler.source>
  19. <maven.compiler.target>1.8</maven.compiler.target>
  20. </properties>
  21. <dependencies>
  22. <dependency>
  23. <groupId>junit</groupId>
  24. <artifactId>junit</artifactId>
  25. <version>4.11</version>
  26. <scope>test</scope>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-web</artifactId>
  31. </dependency>
  32. <!--
  33. https://mvnrepository.com/artifact/de.codecentric/spring-boot-admin-starter-client -->
  34. <dependency>
  35. <groupId>de.codecentric</groupId>
  36. <artifactId>spring-boot-admin-starter-client</artifactId>
  37. <version>2.2.4</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.google.code.gson</groupId>
  41. <artifactId>gson</artifactId>
  42. <version>2.8.8</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-test</artifactId>
  47. </dependency>
  48. <!-- https://mvnrepository.com/artifact/org.springframework/spring-test -->
  49. <dependency>
  50. <groupId>org.springframework</groupId>
  51. <artifactId>spring-test</artifactId>
  52. <version>5.0.10.RELEASE</version>
  53. <scope>test</scope>
  54. </dependency>
  55. <dependency>
  56. <groupId>commons-io</groupId>
  57. <artifactId>commons-io</artifactId>
  58. <version>2.11.0</version> <!-- 根据你的需求选择版本 -->
  59. </dependency>
  60. <dependency>
  61. <groupId>com.alibaba</groupId>
  62. <artifactId>fastjson</artifactId>
  63. <version>2.0.17</version>
  64. </dependency>
  65. <!-- https://mvnrepository.com/artifact/com.mchange/c3p0 -->
  66. <dependency>
  67. <groupId>com.mchange</groupId>
  68. <artifactId>c3p0</artifactId>
  69. <version>0.9.5.5</version>
  70. </dependency>
  71. <!-- https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp -->
  72. <dependency>
  73. <groupId>com.squareup.okhttp3</groupId>
  74. <artifactId>okhttp</artifactId>
  75. <version>4.9.3</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.apache.httpcomponents</groupId>
  79. <artifactId>httpclient</artifactId>
  80. <version>4.5.3</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.apache.httpcomponents</groupId>
  84. <artifactId>httpmime</artifactId>
  85. <version>4.5.13</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>commons-lang</groupId>
  89. <artifactId>commons-lang</artifactId>
  90. <version>2.6</version>
  91. </dependency>
  92. <!--
  93. https://mvnrepository.com/artifact/org.jetbrains.kotlin/kotlin-reflect -->
  94. <dependency>
  95. <groupId>org.jetbrains.kotlin</groupId>
  96. <artifactId>kotlin-reflect</artifactId>
  97. <version>1.6.21</version>
  98. <scope>runtime</scope>
  99. </dependency>
  100. <!-- https://mvnrepository.com/artifact/org.jsoup/jsoup -->
  101. <dependency>
  102. <groupId>org.jsoup</groupId>
  103. <artifactId>jsoup</artifactId>
  104. <version>1.8.1</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.apache.pdfbox</groupId>
  108. <artifactId>pdfbox</artifactId>
  109. <version>2.0.28</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>org.apache.poi</groupId>
  113. <artifactId>poi-scratchpad</artifactId>
  114. <version>4.0.1</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>org.apache.poi</groupId>
  118. <artifactId>poi</artifactId>
  119. <version>4.0.1</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>org.apache.poi</groupId>
  123. <artifactId>poi-ooxml</artifactId>
  124. <version>4.0.1</version>
  125. </dependency>
  126. <!-- Log4j 2 日志库 -->
  127. <dependency>
  128. <groupId>org.apache.logging.log4j</groupId>
  129. <artifactId>log4j-api</artifactId>
  130. <version>2.14.1</version> <!-- 或者你需要的其他版本 -->
  131. </dependency>
  132. <dependency>
  133. <groupId>org.apache.logging.log4j</groupId>
  134. <artifactId>log4j-core</artifactId>
  135. <version>2.14.1</version> <!-- 或者你需要的其他版本 -->
  136. </dependency>
  137. <dependency>
  138. <groupId>org.projectlombok</groupId>
  139. <artifactId>lombok</artifactId>
  140. </dependency>
  141. <!-- <dependency> -->
  142. <!-- <groupId>org.apache.kafka</groupId> -->
  143. <!-- <artifactId>kafka-clients</artifactId> -->
  144. <!-- <version>2.6.0</version> -->
  145. <!-- </dependency> -->
  146. <dependency>
  147. <groupId>org.springframework.kafka</groupId>
  148. <artifactId>spring-kafka</artifactId>
  149. </dependency>
  150. <dependency>
  151. <groupId>cn.hutool</groupId>
  152. <artifactId>hutool-all</artifactId>
  153. <version>5.8.5</version>
  154. </dependency>
  155. <dependency>
  156. <groupId>junit</groupId>
  157. <artifactId>junit</artifactId>
  158. </dependency>
  159. <!-- https://mvnrepository.com/artifact/p6spy/p6spy -->
  160. <dependency>
  161. <groupId>p6spy</groupId>
  162. <artifactId>p6spy</artifactId>
  163. <version>3.9.0</version>
  164. </dependency>
  165. <dependency>
  166. <groupId>commons-collections</groupId>
  167. <artifactId>commons-collections</artifactId>
  168. <version>3.2.2</version>
  169. </dependency>
  170. <!--redis-->
  171. <dependency>
  172. <groupId>org.redisson</groupId>
  173. <artifactId>redisson-spring-boot-starter</artifactId>
  174. <version>3.13.6</version>
  175. </dependency>
  176. <dependency>
  177. <groupId>org.springframework.boot</groupId>
  178. <artifactId>spring-boot-starter-data-redis</artifactId>
  179. </dependency>
  180. <dependency>
  181. <groupId>org.apache.curator</groupId>
  182. <artifactId>curator-framework</artifactId>
  183. <version>5.2.0</version>
  184. </dependency>
  185. <dependency>
  186. <groupId>org.apache.curator</groupId>
  187. <artifactId>curator-recipes</artifactId>
  188. <version>5.2.0</version>
  189. </dependency>
  190. </dependencies>
  191. <build>
  192. <!-- <pluginManagement> --><!-- lock down plugins versions to avoid using Maven defaults (may be
  193. moved
  194. to parent pom) -->
  195. <plugins>
  196. <!-- clean lifecycle, see
  197. https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
  198. <plugin>
  199. <artifactId>maven-clean-plugin</artifactId>
  200. <version>3.1.0</version>
  201. </plugin>
  202. <!-- default lifecycle, jar packaging: see
  203. https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
  204. <plugin>
  205. <artifactId>maven-resources-plugin</artifactId>
  206. <version>3.0.2</version>
  207. </plugin>
  208. <plugin>
  209. <artifactId>maven-compiler-plugin</artifactId>
  210. <version>3.8.0</version>
  211. </plugin>
  212. <plugin>
  213. <artifactId>maven-surefire-plugin</artifactId>
  214. <version>2.22.1</version>
  215. </plugin>
  216. <plugin>
  217. <artifactId>maven-jar-plugin</artifactId>
  218. <version>3.0.2</version>
  219. </plugin>
  220. <plugin>
  221. <artifactId>maven-install-plugin</artifactId>
  222. <version>2.5.2</version>
  223. </plugin>
  224. <plugin>
  225. <artifactId>maven-deploy-plugin</artifactId>
  226. <version>2.8.2</version>
  227. </plugin>
  228. <!-- site lifecycle, see
  229. https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
  230. <plugin>
  231. <artifactId>maven-site-plugin</artifactId>
  232. <version>3.7.1</version>
  233. </plugin>
  234. <plugin>
  235. <artifactId>maven-project-info-reports-plugin</artifactId>
  236. <version>3.0.0</version>
  237. </plugin>
  238. <!-- spring-boot-maven-plugin插件就是打包spring boot应用的 -->
  239. <plugin>
  240. <groupId>org.springframework.boot</groupId>
  241. <artifactId>spring-boot-maven-plugin</artifactId>
  242. <configuration>
  243. <mainClass>com.bw.qanda.Application</mainClass>
  244. <layout>ZIP</layout>
  245. <includes>
  246. <include>
  247. <groupId>${project.groupId}</groupId>
  248. <artifactId>${project.artifactId}</artifactId>
  249. </include>
  250. </includes>
  251. </configuration>
  252. <executions>
  253. <execution>
  254. <goals>
  255. <goal>repackage</goal>
  256. </goals>
  257. </execution>
  258. </executions>
  259. </plugin>
  260. <plugin>
  261. <groupId>org.apache.maven.plugins</groupId>
  262. <artifactId>maven-dependency-plugin</artifactId>
  263. <version>3.1.1</version>
  264. <executions>
  265. <execution>
  266. <id>copy</id>
  267. <phase>package</phase>
  268. <goals>
  269. <goal>copy-dependencies</goal>
  270. </goals>
  271. <configuration>
  272. <type>jar</type>
  273. <includeTypes>jar</includeTypes>
  274. <includeScope>runtime</includeScope>
  275. <outputDirectory>${project.build.directory}/libs</outputDirectory>
  276. </configuration>
  277. </execution>
  278. </executions>
  279. </plugin>
  280. </plugins>
  281. <!-- </pluginManagement> -->
  282. </build>
  283. </project>