pom.xml 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>io.github.qifan777</groupId>
  7. <artifactId>dive-into-spring-ai</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <parent>
  10. <artifactId>spring-boot-starter-parent</artifactId>
  11. <groupId>org.springframework.boot</groupId>
  12. <relativePath/>
  13. <version>3.2.1</version>
  14. </parent>
  15. <properties>
  16. <maven.compiler.source>17</maven.compiler.source>
  17. <maven.compiler.target>17</maven.compiler.target>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <spring-ai.version>1.0.0-M5</spring-ai.version>
  20. <spring-ai-alibaba.version>1.0.0-M5.1</spring-ai-alibaba.version>
  21. <uni-ai.version>0.1.9</uni-ai.version>
  22. <jimmer.version>0.8.134</jimmer.version>
  23. <hutool.version>5.8.25</hutool.version>
  24. <sa-token.version>1.37.0</sa-token.version>
  25. <mybatis-plus-boot-starter.version>3.5.7</mybatis-plus-boot-starter.version>
  26. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  27. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  28. <elasticsearch.version>8.11.3</elasticsearch.version>
  29. </properties>
  30. <dependencies>
  31. <dependency>
  32. <groupId>com.squareup.okhttp3</groupId>
  33. <artifactId>okhttp</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.github.javaparser</groupId>
  37. <artifactId>javaparser-symbol-solver-core</artifactId>
  38. <version>3.26.2</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.alibaba</groupId>
  42. <artifactId>easyexcel</artifactId>
  43. <version>3.3.4</version>
  44. <exclusions>
  45. <exclusion>
  46. <groupId>commons-io</groupId>
  47. <artifactId>commons-io</artifactId>
  48. </exclusion>
  49. <exclusion>
  50. <groupId>org.apache.commons</groupId>
  51. <artifactId>commons-compress</artifactId>
  52. </exclusion>
  53. </exclusions>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-starter-data-neo4j</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.springframework.ai</groupId>
  61. <artifactId>spring-ai-redis-store</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>redis.clients</groupId>
  65. <artifactId>jedis</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.springframework.ai</groupId>
  69. <artifactId>spring-ai-tika-document-reader</artifactId>
  70. </dependency>
  71. <dependency>
  72. <artifactId>jimmer-spring-boot-starter</artifactId>
  73. <groupId>org.babyfish.jimmer</groupId>
  74. <version>${jimmer.version}</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>io.github.qifan777</groupId>
  78. <artifactId>spring-boot-starter-oss</artifactId>
  79. </dependency>
  80. <!-- 根据自己的需要开启响应厂商的配置-->
  81. <!-- <dependency>-->
  82. <!-- <groupId>org.springframework.ai</groupId>-->
  83. <!-- <artifactId>spring-ai-moonshot-spring-boot-starter</artifactId>-->
  84. <!-- </dependency>-->
  85. <!-- <dependency>-->
  86. <!-- <groupId>org.springframework.ai</groupId>-->
  87. <!-- <artifactId>spring-ai-qianfan-spring-boot-starter</artifactId>-->
  88. <!-- </dependency>-->
  89. <!-- <dependency>-->
  90. <!-- <groupId>org.springframework.ai</groupId>-->
  91. <!-- <artifactId>spring-ai-zhipuai-spring-boot-starter</artifactId>-->
  92. <!-- </dependency>-->
  93. <!-- <dependency>-->
  94. <!-- <groupId>org.springframework.ai</groupId>-->
  95. <!-- <artifactId>spring-ai-openai-spring-boot-starter</artifactId>-->
  96. <!-- </dependency>-->
  97. <!-- <dependency>-->
  98. <!-- <groupId>org.springframework.ai</groupId>-->
  99. <!-- <artifactId>spring-ai-ollama-spring-boot-starter</artifactId>-->
  100. <!-- </dependency>-->
  101. <dependency>
  102. <groupId>com.alibaba.cloud.ai</groupId>
  103. <artifactId>spring-ai-alibaba-starter</artifactId>
  104. <version>${spring-ai-alibaba.version}</version>
  105. </dependency>
  106. <!-- <dependency>-->
  107. <!-- <groupId>org.springframework.ai</groupId>-->
  108. <!-- <artifactId>spring-ai-openai-spring-boot-starter</artifactId>-->
  109. <!-- </dependency>-->
  110. <dependency>
  111. <groupId>org.springframework.boot</groupId>
  112. <artifactId>spring-boot-starter-actuator</artifactId>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.springframework.boot</groupId>
  116. <artifactId>spring-boot-starter-test</artifactId>
  117. <scope>test</scope>
  118. </dependency>
  119. <dependency>
  120. <groupId>org.springframework</groupId>
  121. <artifactId>spring-test</artifactId>
  122. </dependency>
  123. <dependency>
  124. <artifactId>mysql-connector-j</artifactId>
  125. <groupId>com.mysql</groupId>
  126. </dependency>
  127. <dependency>
  128. <artifactId>hutool-core</artifactId>
  129. <groupId>cn.hutool</groupId>
  130. <version>${hutool.version}</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>cn.dev33</groupId>
  134. <artifactId>sa-token-redis-jackson</artifactId>
  135. <version>${sa-token.version}</version>
  136. </dependency>
  137. <dependency>
  138. <groupId>cn.dev33</groupId>
  139. <artifactId>sa-token-spring-boot3-starter</artifactId>
  140. <version>${sa-token.version}</version>
  141. </dependency>
  142. <dependency>
  143. <groupId>com.baomidou</groupId>
  144. <artifactId>mybatis-plus-spring-boot3-starter</artifactId>
  145. <version>${mybatis-plus-boot-starter.version}</version>
  146. </dependency>
  147. <dependency>
  148. <groupId>com.baomidou</groupId>
  149. <artifactId>mybatis-plus-generator</artifactId>
  150. <version>${mybatis-plus-boot-starter.version}</version>
  151. </dependency>
  152. <dependency>
  153. <groupId>com.baomidou</groupId>
  154. <artifactId>mybatis-plus-annotation</artifactId>
  155. <version>${mybatis-plus-boot-starter.version}</version>
  156. </dependency>
  157. <dependency>
  158. <groupId>org.springframework.boot</groupId>
  159. <artifactId>spring-boot-starter-data-redis</artifactId>
  160. </dependency>
  161. <dependency>
  162. <groupId>co.elastic.clients</groupId>
  163. <artifactId>elasticsearch-java</artifactId>
  164. <version>${elasticsearch.version}</version>
  165. </dependency>
  166. <dependency>
  167. <groupId>jakarta.json</groupId>
  168. <artifactId>jakarta.json-api</artifactId>
  169. <version>2.0.1</version>
  170. </dependency>
  171. <dependency>
  172. <groupId>com.tencentcloudapi</groupId>
  173. <artifactId>tencentcloud-sdk-java-asr</artifactId>
  174. <version>3.1.1208</version>
  175. </dependency>
  176. </dependencies>
  177. <dependencyManagement>
  178. <dependencies>
  179. <dependency>
  180. <groupId>org.springframework.ai</groupId>
  181. <artifactId>spring-ai-bom</artifactId>
  182. <version>${spring-ai.version}</version>
  183. <type>pom</type>
  184. <scope>import</scope>
  185. </dependency>
  186. <dependency>
  187. <groupId>io.github.qifan777</groupId>
  188. <artifactId>uni-ai-bom</artifactId>
  189. <version>${uni-ai.version}</version>
  190. <type>pom</type>
  191. <scope>import</scope>
  192. </dependency>
  193. </dependencies>
  194. </dependencyManagement>
  195. <repositories>
  196. <repository>
  197. <id>spring-milestones</id>
  198. <name>Spring Milestones</name>
  199. <url>https://repo.spring.io/milestone</url>
  200. <snapshots>
  201. <enabled>false</enabled>
  202. </snapshots>
  203. </repository>
  204. <repository>
  205. <id>spring-snapshots</id>
  206. <name>Spring Snapshots</name>
  207. <url>https://repo.spring.io/snapshot</url>
  208. <releases>
  209. <enabled>false</enabled>
  210. </releases>
  211. </repository>
  212. </repositories>
  213. <build>
  214. <plugins>
  215. <plugin>
  216. <groupId>org.springframework.boot</groupId>
  217. <artifactId>spring-boot-maven-plugin</artifactId>
  218. </plugin>
  219. <plugin>
  220. <groupId>org.apache.maven.plugins</groupId>
  221. <artifactId>maven-compiler-plugin</artifactId>
  222. <configuration>
  223. <annotationProcessorPaths>
  224. <path>
  225. <artifactId>jimmer-apt</artifactId>
  226. <groupId>org.babyfish.jimmer</groupId>
  227. <version>${jimmer.version}</version>
  228. </path>
  229. <path>
  230. <artifactId>lombok</artifactId>
  231. <groupId>org.projectlombok</groupId>
  232. <version>${lombok.version}</version>
  233. </path>
  234. </annotationProcessorPaths>
  235. </configuration>
  236. </plugin>
  237. </plugins>
  238. </build>
  239. </project>