pom.xml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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>io.modelcontextprotocol.sdk</groupId>
  33. <artifactId>mcp-spring-webflux</artifactId>
  34. <version>0.8.0</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.ruoyi</groupId>
  38. <artifactId>ruoyi-common-chat</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-test</artifactId>
  47. <scope>test</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-starter-web</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.springframework.ai</groupId>
  55. <artifactId>spring-ai-openai-spring-boot-starter</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.springframework.ai</groupId>
  59. <artifactId>spring-ai-mcp-client-spring-boot-starter</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework.ai</groupId>
  63. <artifactId>spring-ai-mcp</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.springframework.ai</groupId>
  67. <artifactId>spring-ai-mcp-client-webflux-spring-boot-starter</artifactId>
  68. </dependency>
  69. </dependencies>
  70. </project>