pom.xml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>cn.com.yusys.ai</groupId>
  8. <artifactId>yusys-ai-platform</artifactId>
  9. <version>1.0</version>
  10. <relativePath>../pom.xml</relativePath>
  11. </parent>
  12. <groupId>com.example</groupId>
  13. <artifactId>yusys-ai-demo-mcp</artifactId>
  14. <version>1.0.0</version>
  15. <name>yusys-ai-demo-mcp</name>
  16. <description>yusys-ai-demo-mcp</description>
  17. <properties>
  18. <java.version>17</java.version>
  19. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  20. </properties>
  21. <dependencies>
  22. <dependency>
  23. <groupId>org.springframework.ai</groupId>
  24. <artifactId>spring-ai-starter-mcp-server-webflux</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-webflux</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.alibaba.cloud.ai</groupId>
  32. <artifactId>spring-ai-alibaba-starter-mcp-registry</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>io.agentscope</groupId>
  36. <artifactId>agentscope-harness</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-opentelemetry</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-actuator</artifactId>
  45. </dependency>
  46. </dependencies>
  47. <build>
  48. <plugins>
  49. <plugin>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-maven-plugin</artifactId>
  52. </plugin>
  53. </plugins>
  54. </build>
  55. </project>