| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>cn.com.yusys.ai</groupId>
- <artifactId>yusys-ai-platform</artifactId>
- <version>1.0</version>
- <relativePath>../pom.xml</relativePath>
- </parent>
- <groupId>com.example</groupId>
- <artifactId>yusys-ai-demo-agent</artifactId>
- <version>1.0.0</version>
- <name>yusys-ai-demo-agent</name>
- <description>yusys-ai-demo-agent</description>
- <properties>
- <java.version>17</java.version>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <dependencies>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-commons</artifactId>
- </dependency>
- <dependency>
- <groupId>io.agentscope</groupId>
- <artifactId>agentscope-extensions-agui</artifactId>
- </dependency>
- <dependency>
- <groupId>io.agentscope</groupId>
- <artifactId>agentscope-extensions-a2a-client</artifactId>
- </dependency>
- <dependency>
- <groupId>io.agentscope</groupId>
- <artifactId>agentscope-extensions-nacos-a2a</artifactId>
- </dependency>
- <dependency>
- <groupId>io.agentscope</groupId>
- <artifactId>agentscope-extensions-model-dashscope</artifactId>
- </dependency>
- <dependency>
- <groupId>io.agentscope</groupId>
- <artifactId>agentscope-harness</artifactId>
- <exclusions>
- <exclusion>
- <artifactId>protobuf-java</artifactId>
- <groupId>com.google.protobuf</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-opentelemetry</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-actuator</artifactId>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
- </project>
|