pom.xml 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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-agent</artifactId>
  14. <version>1.0.0</version>
  15. <name>yusys-ai-demo-agent</name>
  16. <description>yusys-ai-demo-agent</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.boot</groupId>
  24. <artifactId>spring-boot-starter-web</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.cloud</groupId>
  28. <artifactId>spring-cloud-commons</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>io.agentscope</groupId>
  32. <artifactId>agentscope-extensions-agui</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>io.agentscope</groupId>
  36. <artifactId>agentscope-extensions-a2a-client</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>io.agentscope</groupId>
  40. <artifactId>agentscope-extensions-nacos-a2a</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>io.agentscope</groupId>
  44. <artifactId>agentscope-extensions-model-dashscope</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>io.agentscope</groupId>
  48. <artifactId>agentscope-harness</artifactId>
  49. <exclusions>
  50. <exclusion>
  51. <artifactId>protobuf-java</artifactId>
  52. <groupId>com.google.protobuf</groupId>
  53. </exclusion>
  54. </exclusions>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-starter-opentelemetry</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-starter-actuator</artifactId>
  63. </dependency>
  64. </dependencies>
  65. <build>
  66. <plugins>
  67. <plugin>
  68. <groupId>org.springframework.boot</groupId>
  69. <artifactId>spring-boot-maven-plugin</artifactId>
  70. </plugin>
  71. </plugins>
  72. </build>
  73. </project>