pom.xml 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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>1.0.0</version>
  8. <relativePath>../../pom.xml</relativePath>
  9. </parent>
  10. <artifactId>call-mcp-server</artifactId>
  11. <name>Archetype - call-mcp-server</name>
  12. <url>http://maven.apache.org</url>
  13. <properties>
  14. <java.version>17</java.version>
  15. </properties>
  16. <dependencyManagement>
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.springframework.ai</groupId>
  20. <artifactId>spring-ai-bom</artifactId>
  21. <version>1.0.0-M6</version>
  22. <type>pom</type>
  23. <scope>import</scope>
  24. </dependency>
  25. </dependencies>
  26. </dependencyManagement>
  27. <dependencies>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-test</artifactId>
  35. <scope>test</scope>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-web</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.ai</groupId>
  47. <artifactId>spring-ai-mcp-client-spring-boot-starter</artifactId>
  48. <version>1.0.0-M6</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework.ai</groupId>
  52. <artifactId>spring-ai-openai-spring-boot-starter</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.springframework.ai</groupId>
  56. <artifactId>spring-ai-mcp</artifactId>
  57. </dependency>
  58. </dependencies>
  59. <build>
  60. <plugins>
  61. <plugin>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-maven-plugin</artifactId>
  64. </plugin>
  65. </plugins>
  66. </build>
  67. </project>