pom.xml 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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. <spring-ai.version>1.0.0-M7</spring-ai.version>
  18. </properties>
  19. <dependencyManagement>
  20. <dependencies>
  21. <dependency>
  22. <groupId>org.springframework.ai</groupId>
  23. <artifactId>spring-ai-bom</artifactId>
  24. <version>${spring-ai.version}</version>
  25. <type>pom</type>
  26. <scope>import</scope>
  27. </dependency>
  28. </dependencies>
  29. </dependencyManagement>
  30. <!-- 对话基础模块 -->
  31. <dependencies>
  32. <!-- <dependency>-->
  33. <!-- <groupId>io.modelcontextprotocol.sdk</groupId>-->
  34. <!-- <artifactId>mcp-spring-webflux</artifactId>-->
  35. <!-- <version>0.8.0</version>-->
  36. <!-- </dependency>-->
  37. <dependency>
  38. <groupId>org.ruoyi</groupId>
  39. <artifactId>ruoyi-common-chat</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-test</artifactId>
  48. <scope>test</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-starter-web</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.springframework.ai</groupId>
  56. <artifactId>spring-ai-starter-mcp-client</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.springframework.ai</groupId>
  60. <artifactId>spring-ai-starter-model-openai</artifactId>
  61. </dependency>
  62. </dependencies>
  63. </project>