| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| Licensed to the Apache Software Foundation (ASF) under one or more |
| contributor license agreements. See the NOTICE file distributed with |
| this work for additional information regarding copyright ownership. |
| The ASF licenses this file to You under the Apache License, Version 2.0 |
| (the "License"); you may not use this file except in compliance with |
| the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| --> |
| <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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| <modelVersion>4.0.0</modelVersion> |
| |
| <groupId>org.example</groupId> |
| <artifactId>rocketmq-multiagent-base-adk</artifactId> |
| <version>2.1.1-SNAPSHOT</version> |
| <packaging>pom</packaging> |
| <modules> |
| <module>supervisor-agent</module> |
| <module>weather-agent</module> |
| <module>common-base-adk</module> |
| <module>travel-agent</module> |
| <module>supervisor-agent-web</module> |
| </modules> |
| |
| <properties> |
| <maven.compiler.source>17</maven.compiler.source> |
| <maven.compiler.target>17</maven.compiler.target> |
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| <rocketmq-client.version>5.2.0</rocketmq-client.version> |
| <rocketmq-a2a.version>1.0.9</rocketmq-a2a.version> |
| <dashscope.version>2.21.6</dashscope.version> |
| <fastjson.version>1.2.83_noneautotype</fastjson.version> |
| <a2a-sdk.version>0.3.3.Final</a2a-sdk.version> |
| <adk.verison>0.3.0</adk.verison> |
| <quarkus.version>3.24.5</quarkus.version> |
| <jakarta.version>4.1.0</jakarta.version> |
| <jakarta-ws.version>3.1.0</jakarta-ws.version> |
| <common.version>2.1.1-SNAPSHOT</common.version> |
| <logback.version>1.5.20</logback.version> |
| </properties> |
| <dependencyManagement> |
| <dependencies> |
| <dependency> |
| <groupId>org.apache.rocketmq</groupId> |
| <artifactId>rocketmq-client-java</artifactId> |
| <version>${rocketmq-client.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.rocketmq</groupId> |
| <artifactId>rocketmq-a2a</artifactId> |
| <version>${rocketmq-a2a.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>com.alibaba</groupId> |
| <artifactId>dashscope-sdk-java</artifactId> |
| <version>${dashscope.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>com.alibaba</groupId> |
| <artifactId>fastjson</artifactId> |
| <version>${fastjson.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>io.github.a2asdk</groupId> |
| <artifactId>a2a-java-sdk-spec</artifactId> |
| <version>${a2a-sdk.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>com.google.adk</groupId> |
| <artifactId>google-adk</artifactId> |
| <version>${adk.verison}</version> |
| </dependency> |
| <dependency> |
| <groupId>com.google.adk</groupId> |
| <artifactId>google-adk-dev</artifactId> |
| <version>${adk.verison}</version> |
| </dependency> |
| <dependency> |
| <groupId>io.quarkus</groupId> |
| <artifactId>quarkus-bom</artifactId> |
| <version>${quarkus.version}</version> |
| <type>pom</type> |
| <scope>import</scope> |
| </dependency> |
| <dependency> |
| <groupId>io.quarkus</groupId> |
| <artifactId>quarkus-resteasy-jackson</artifactId> |
| <version>${quarkus.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>jakarta.enterprise</groupId> |
| <artifactId>jakarta.enterprise.cdi-api</artifactId> |
| <version>${jakarta.version}</version> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>jakarta.ws.rs</groupId> |
| <artifactId>jakarta.ws.rs-api</artifactId> |
| <version>${jakarta-ws.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.example</groupId> |
| <artifactId>common-base-adk</artifactId> |
| <version>${common.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>ch.qos.logback</groupId> |
| <artifactId>logback-classic</artifactId> |
| <version>${logback.version}</version> |
| </dependency> |
| </dependencies> |
| </dependencyManagement> |
| </project> |