| <?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"> |
| |
| <parent> |
| <groupId>org.apache</groupId> |
| <artifactId>apache</artifactId> |
| <version>18</version> |
| </parent> |
| |
| <modelVersion>4.0.0</modelVersion> |
| |
| <groupId>org.apache.rocketmq</groupId> |
| <artifactId>rocketmq-a2a</artifactId> |
| <version>1.0.10-SNAPSHOT</version> |
| |
| <name>Apache RocketMQ A2A ${project.version}</name> |
| <description>Integrate Apache RocketMQ with A2A</description> |
| <url>https://github.com/apache/rocketmq-a2a</url> |
| |
| <scm> |
| <url>git@github.com:apache/rocketmq-a2a.git</url> |
| <connection>scm:git:git@github.com:apache/rocketmq-a2a.git</connection> |
| <developerConnection>scm:git:git@github.com:apache/rocketmq-a2a.git</developerConnection> |
| <tag>HEAD</tag> |
| </scm> |
| |
| <mailingLists> |
| <mailingList> |
| <name>Development List</name> |
| <subscribe>dev-subscribe@rocketmq.apache.org</subscribe> |
| <unsubscribe>dev-unsubscribe@rocketmq.apache.org</unsubscribe> |
| <post>dev@rocketmq.apache.org</post> |
| </mailingList> |
| <mailingList> |
| <name>User List</name> |
| <subscribe>users-subscribe@rocketmq.apache.org</subscribe> |
| <unsubscribe>users-unsubscribe@rocketmq.apache.org</unsubscribe> |
| <post>users@rocketmq.apache.org</post> |
| </mailingList> |
| <mailingList> |
| <name>Commits List</name> |
| <subscribe>commits-subscribe@rocketmq.apache.org</subscribe> |
| <unsubscribe>commits-unsubscribe@rocketmq.apache.org</unsubscribe> |
| <post>commits@rocketmq.apache.org</post> |
| </mailingList> |
| </mailingLists> |
| |
| <organization> |
| <name>Apache Software Foundation</name> |
| <url>http://www.apache.org</url> |
| </organization> |
| |
| <licenses> |
| <license> |
| <name>Apache License, Version 2.0</name> |
| <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| <distribution>repo</distribution> |
| <comments>A business-friendly OSS license</comments> |
| </license> |
| </licenses> |
| |
| <issueManagement> |
| <system>jira</system> |
| <url>https://issues.apache.org/jira/browse/RocketMQ</url> |
| </issueManagement> |
| |
| <properties> |
| <maven.compiler.source>17</maven.compiler.source> |
| <maven.compiler.target>17</maven.compiler.target> |
| <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> |
| <common-util-version>4.4</common-util-version> |
| </properties> |
| |
| <dependencies> |
| <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.apache.commons</groupId> |
| <artifactId>commons-collections4</artifactId> |
| <version>${common-util-version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-api</artifactId> |
| <version>${slfj-version}</version> |
| </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> |
| </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> |
| </dependencies> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-compiler-plugin</artifactId> |
| <version>3.11.0</version> |
| <configuration> |
| <source>17</source> |
| <target>17</target> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-source-plugin</artifactId> |
| <version>3.3.0</version> |
| <executions> |
| <execution> |
| <id>attach-sources</id> |
| <goals> |
| <goal>jar-no-fork</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-checkstyle-plugin</artifactId> |
| <version>3.5.0</version> |
| <executions> |
| <execution> |
| <id>validate</id> |
| <phase>validate</phase> |
| <configuration> |
| <excludes>src/main/resources</excludes> |
| <configLocation>style/rmq_checkstyle.xml</configLocation> |
| <consoleOutput>true</consoleOutput> |
| <failsOnError>true</failsOnError> |
| </configuration> |
| <goals> |
| <goal>check</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| </project> |