pom.xml 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  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. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  26. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  27. </properties>
  28. <dependencies>
  29. <dependency>
  30. <groupId>com.squareup.okhttp3</groupId>
  31. <artifactId>okhttp</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.github.javaparser</groupId>
  35. <artifactId>javaparser-symbol-solver-core</artifactId>
  36. <version>3.26.2</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.alibaba</groupId>
  40. <artifactId>easyexcel</artifactId>
  41. <version>3.3.4</version>
  42. <exclusions>
  43. <exclusion>
  44. <groupId>commons-io</groupId>
  45. <artifactId>commons-io</artifactId>
  46. </exclusion>
  47. <exclusion>
  48. <groupId>org.apache.commons</groupId>
  49. <artifactId>commons-compress</artifactId>
  50. </exclusion>
  51. </exclusions>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-starter-data-neo4j</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.springframework.ai</groupId>
  59. <artifactId>spring-ai-redis-store</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>redis.clients</groupId>
  63. <artifactId>jedis</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.springframework.ai</groupId>
  67. <artifactId>spring-ai-tika-document-reader</artifactId>
  68. </dependency>
  69. <dependency>
  70. <artifactId>jimmer-spring-boot-starter</artifactId>
  71. <groupId>org.babyfish.jimmer</groupId>
  72. <version>${jimmer.version}</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>io.github.qifan777</groupId>
  76. <artifactId>spring-boot-starter-oss</artifactId>
  77. </dependency>
  78. <!-- 根据自己的需要开启响应厂商的配置-->
  79. <!-- <dependency>-->
  80. <!-- <groupId>org.springframework.ai</groupId>-->
  81. <!-- <artifactId>spring-ai-moonshot-spring-boot-starter</artifactId>-->
  82. <!-- </dependency>-->
  83. <!-- <dependency>-->
  84. <!-- <groupId>org.springframework.ai</groupId>-->
  85. <!-- <artifactId>spring-ai-qianfan-spring-boot-starter</artifactId>-->
  86. <!-- </dependency>-->
  87. <!-- <dependency>-->
  88. <!-- <groupId>org.springframework.ai</groupId>-->
  89. <!-- <artifactId>spring-ai-zhipuai-spring-boot-starter</artifactId>-->
  90. <!-- </dependency>-->
  91. <!-- <dependency>-->
  92. <!-- <groupId>org.springframework.ai</groupId>-->
  93. <!-- <artifactId>spring-ai-openai-spring-boot-starter</artifactId>-->
  94. <!-- </dependency>-->
  95. <!-- <dependency>-->
  96. <!-- <groupId>org.springframework.ai</groupId>-->
  97. <!-- <artifactId>spring-ai-ollama-spring-boot-starter</artifactId>-->
  98. <!-- </dependency>-->
  99. <dependency>
  100. <groupId>com.alibaba.cloud.ai</groupId>
  101. <artifactId>spring-ai-alibaba-starter</artifactId>
  102. <version>${spring-ai-alibaba.version}</version>
  103. </dependency>
  104. <!-- <dependency>-->
  105. <!-- <groupId>org.springframework.ai</groupId>-->
  106. <!-- <artifactId>spring-ai-openai-spring-boot-starter</artifactId>-->
  107. <!-- </dependency>-->
  108. <dependency>
  109. <groupId>org.springframework.boot</groupId>
  110. <artifactId>spring-boot-starter-actuator</artifactId>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.springframework.boot</groupId>
  114. <artifactId>spring-boot-starter-test</artifactId>
  115. <scope>test</scope>
  116. </dependency>
  117. <dependency>
  118. <groupId>org.springframework</groupId>
  119. <artifactId>spring-test</artifactId>
  120. </dependency>
  121. <dependency>
  122. <artifactId>mysql-connector-j</artifactId>
  123. <groupId>com.mysql</groupId>
  124. </dependency>
  125. <dependency>
  126. <artifactId>hutool-core</artifactId>
  127. <groupId>cn.hutool</groupId>
  128. <version>${hutool.version}</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>cn.dev33</groupId>
  132. <artifactId>sa-token-redis-jackson</artifactId>
  133. <version>${sa-token.version}</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>cn.dev33</groupId>
  137. <artifactId>sa-token-spring-boot3-starter</artifactId>
  138. <version>${sa-token.version}</version>
  139. </dependency>
  140. </dependencies>
  141. <dependencyManagement>
  142. <dependencies>
  143. <dependency>
  144. <groupId>org.springframework.ai</groupId>
  145. <artifactId>spring-ai-bom</artifactId>
  146. <version>${spring-ai.version}</version>
  147. <type>pom</type>
  148. <scope>import</scope>
  149. </dependency>
  150. <dependency>
  151. <groupId>io.github.qifan777</groupId>
  152. <artifactId>uni-ai-bom</artifactId>
  153. <version>${uni-ai.version}</version>
  154. <type>pom</type>
  155. <scope>import</scope>
  156. </dependency>
  157. </dependencies>
  158. </dependencyManagement>
  159. <repositories>
  160. <repository>
  161. <id>spring-milestones</id>
  162. <name>Spring Milestones</name>
  163. <url>https://repo.spring.io/milestone</url>
  164. <snapshots>
  165. <enabled>false</enabled>
  166. </snapshots>
  167. </repository>
  168. <repository>
  169. <id>spring-snapshots</id>
  170. <name>Spring Snapshots</name>
  171. <url>https://repo.spring.io/snapshot</url>
  172. <releases>
  173. <enabled>false</enabled>
  174. </releases>
  175. </repository>
  176. </repositories>
  177. <build>
  178. <plugins>
  179. <plugin>
  180. <groupId>org.springframework.boot</groupId>
  181. <artifactId>spring-boot-maven-plugin</artifactId>
  182. </plugin>
  183. <plugin>
  184. <groupId>org.apache.maven.plugins</groupId>
  185. <artifactId>maven-compiler-plugin</artifactId>
  186. <configuration>
  187. <annotationProcessorPaths>
  188. <path>
  189. <artifactId>jimmer-apt</artifactId>
  190. <groupId>org.babyfish.jimmer</groupId>
  191. <version>${jimmer.version}</version>
  192. </path>
  193. <path>
  194. <artifactId>lombok</artifactId>
  195. <groupId>org.projectlombok</groupId>
  196. <version>${lombok.version}</version>
  197. </path>
  198. </annotationProcessorPaths>
  199. </configuration>
  200. </plugin>
  201. </plugins>
  202. </build>
  203. </project>