pom.xml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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. <parent>
  7. <groupId>org.ruoyi</groupId>
  8. <artifactId>ruoyi-modules-api</artifactId>
  9. <version>${revision}</version>
  10. <relativePath>../pom.xml</relativePath>
  11. </parent>
  12. <artifactId>ruoyi-chat-api</artifactId>
  13. <properties>
  14. <maven.compiler.source>17</maven.compiler.source>
  15. <maven.compiler.target>17</maven.compiler.target>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. </properties>
  18. <dependencyManagement>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.springframework.ai</groupId>
  22. <artifactId>spring-ai-bom</artifactId>
  23. <version>1.0.0-M6</version>
  24. <type>pom</type>
  25. <scope>import</scope>
  26. </dependency>
  27. </dependencies>
  28. </dependencyManagement>
  29. <!-- 对话基础模块 -->
  30. <dependencies>
  31. <dependency>
  32. <groupId>org.ruoyi</groupId>
  33. <artifactId>ruoyi-common-chat</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-test</artifactId>
  42. <scope>test</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-web</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.ai</groupId>
  50. <artifactId>spring-ai-mcp-client-spring-boot-starter</artifactId>
  51. </dependency>
  52. <!-- <dependency>-->
  53. <!-- <groupId>org.springframework.ai</groupId>-->
  54. <!-- <artifactId>spring-ai-ollama-spring-boot-starter</artifactId>-->
  55. <!-- </dependency>-->
  56. <dependency>
  57. <groupId>org.springframework.ai</groupId>
  58. <artifactId>spring-ai-openai-spring-boot-starter</artifactId>
  59. </dependency>
  60. </dependencies>
  61. </project>