pom.xml 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  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. <dependency>
  63. <groupId>io.github.imfangs</groupId>
  64. <artifactId>dify-java-client</artifactId>
  65. <version>1.0.7</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.coze</groupId>
  69. <artifactId>coze-api</artifactId>
  70. <version>0.3.1</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>dev.langchain4j</groupId>
  74. <artifactId>langchain4j-open-ai</artifactId>
  75. <version>1.0.1</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>dev.langchain4j</groupId>
  79. <artifactId>langchain4j-core</artifactId>
  80. <version>1.0.0</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>dev.langchain4j</groupId>
  84. <artifactId>langchain4j-http-client-jdk</artifactId>
  85. <version>1.0.0</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>dev.langchain4j</groupId>
  89. <artifactId>langchain4j-community-zhipu-ai</artifactId>
  90. <version>1.0.1-beta6</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>dev.langchain4j</groupId>
  94. <artifactId>langchain4j-community-dashscope</artifactId>
  95. <version>1.0.1-beta6</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>io.jsonwebtoken</groupId>
  99. <artifactId>jjwt</artifactId>
  100. <version>0.12.6</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>io.jsonwebtoken</groupId>
  104. <artifactId>jjwt-api</artifactId>
  105. <version>0.12.6</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>io.jsonwebtoken</groupId>
  109. <artifactId>jjwt-impl</artifactId>
  110. <version>0.12.6</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>io.jsonwebtoken</groupId>
  114. <artifactId>jjwt-jackson</artifactId>
  115. <version>0.12.6</version>
  116. </dependency>
  117. <dependency>
  118. <groupId>org.springframework.boot</groupId>
  119. <artifactId>spring-boot-starter-webflux</artifactId>
  120. </dependency>
  121. </dependencies>
  122. </project>