pom.xml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>org.ruoyi</groupId>
  6. <artifactId>ruoyi-ai</artifactId>
  7. <version>${revision}</version>
  8. <relativePath>../../pom.xml</relativePath>
  9. </parent>
  10. <artifactId>ruoyi-mcp-server</artifactId>
  11. <dependencyManagement>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.springframework.ai</groupId>
  15. <artifactId>spring-ai-bom</artifactId>
  16. <version>1.0.0-M6</version>
  17. <type>pom</type>
  18. <scope>import</scope>
  19. </dependency>
  20. </dependencies>
  21. </dependencyManagement>
  22. <dependencies>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-test</artifactId>
  30. <scope>test</scope>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-web</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.ai</groupId>
  38. <artifactId>spring-ai-mcp-server-webmvc-spring-boot-starter</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.ai</groupId>
  42. <artifactId>spring-ai-mcp</artifactId>
  43. </dependency>
  44. <!-- <dependency>-->
  45. <!-- <groupId>org.ruoyi</groupId>-->
  46. <!-- <artifactId>ruoyi-system-api</artifactId>-->
  47. <!-- <exclusions>-->
  48. <!-- <exclusion>-->
  49. <!-- <groupId>org.ruoyi</groupId>-->
  50. <!-- <artifactId>ruoyi-common-translation</artifactId>-->
  51. <!-- </exclusion>-->
  52. <!-- </exclusions>-->
  53. <!-- </dependency>-->
  54. </dependencies>
  55. </project>