| <?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> |
| <parent> |
| <groupId>org.springframework.boot</groupId> |
| <artifactId>spring-boot-starter-parent</artifactId> |
| <version>3.2.5</version> |
| <relativePath/> |
| </parent> |
| |
| <artifactId>supervisor-agent-web</artifactId> |
| <version>2.1.1-SNAPSHOT</version> |
| |
| <properties> |
| <maven.compiler.source>17</maven.compiler.source> |
| <maven.compiler.target>17</maven.compiler.target> |
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| <jakarta.enterprise.cdi-api.version>4.1.0</jakarta.enterprise.cdi-api.version> |
| <jakarta.inject.jakarta.inject-api.version>2.0.1</jakarta.inject.jakarta.inject-api.version> |
| <jakarta.json-api.version>2.1.3</jakarta.json-api.version> |
| <jakarta.ws.rs-api.version>3.1.0</jakarta.ws.rs-api.version> |
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| <a2a-java-sdk-version>0.3.3.Final</a2a-java-sdk-version> |
| <rocketmq-client-version>5.2.0</rocketmq-client-version> |
| <fastjson-version>1.2.83_noneautotype</fastjson-version> |
| <slfj-version>2.0.13</slfj-version> |
| <adk.verison>0.3.0</adk.verison> |
| <rocketmq-a2a.version>1.0.9</rocketmq-a2a.version> |
| <logback.version>1.4.14</logback.version> |
| <project.version>2.1.1-SNAPSHOT</project.version> |
| </properties> |
| |
| <dependencies> |
| <dependency> |
| <groupId>org.apache.rocketmq</groupId> |
| <artifactId>rocketmq-a2a</artifactId> |
| <version>${rocketmq-a2a.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.rocketmq</groupId> |
| <artifactId>rocketmq-client-java</artifactId> |
| <version>${rocketmq-client-version}</version> |
| </dependency> |
| <dependency> |
| <groupId>com.alibaba</groupId> |
| <artifactId>fastjson</artifactId> |
| <version>${fastjson-version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.springframework.boot</groupId> |
| <artifactId>spring-boot-starter-web</artifactId> |
| <exclusions> |
| <exclusion> |
| <artifactId>logback-classic</artifactId> |
| <groupId>ch.qos.logback</groupId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>io.projectreactor</groupId> |
| <artifactId>reactor-core</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>io.github.a2asdk</groupId> |
| <artifactId>a2a-java-sdk-client</artifactId> |
| <version>${a2a-java-sdk-version}</version> |
| </dependency> |
| <dependency> |
| <groupId>io.github.a2asdk</groupId> |
| <artifactId>a2a-java-sdk-reference-jsonrpc</artifactId> |
| <version>${a2a-java-sdk-version}</version> |
| <exclusions> |
| <exclusion> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-jboss-logmanager</artifactId> |
| </exclusion> |
| <exclusion> |
| <artifactId>slf4j-jboss-logmanager</artifactId> |
| <groupId>org.jboss.slf4j</groupId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>com.google.adk</groupId> |
| <artifactId>google-adk</artifactId> |
| <version>${adk.verison}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-api</artifactId> |
| <version>${slfj-version}</version> |
| </dependency> |
| <dependency> |
| <groupId>ch.qos.logback</groupId> |
| <artifactId>logback-classic</artifactId> |
| <version>${logback.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>jakarta.enterprise</groupId> |
| <artifactId>jakarta.enterprise.cdi-api</artifactId> |
| <version>${jakarta.enterprise.cdi-api.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>jakarta.inject</groupId> |
| <artifactId>jakarta.inject-api</artifactId> |
| <version>${jakarta.inject.jakarta.inject-api.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>jakarta.json</groupId> |
| <artifactId>jakarta.json-api</artifactId> |
| <version>${jakarta.json-api.version}</version> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>jakarta.ws.rs</groupId> |
| <artifactId>jakarta.ws.rs-api</artifactId> |
| <version>${jakarta.ws.rs-api.version}</version> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.example</groupId> |
| <artifactId>common-base-adk</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| </dependencies> |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.springframework.boot</groupId> |
| <artifactId>spring-boot-maven-plugin</artifactId> |
| <configuration> |
| <mainClass>org.example.RocketMQA2AChatApplication</mainClass> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| </project> |