|
| 1 | +<?xml version="1.0"?> |
| 2 | +<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" |
| 3 | + xmlns="http://maven.apache.org/POM/4.0.0" |
| 4 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
| 5 | + <modelVersion>4.0.0</modelVersion> |
| 6 | + |
| 7 | + <parent> |
| 8 | + <groupId>org.a2aproject.sdk</groupId> |
| 9 | + <artifactId>a2a-java-sdk-compat-0.3-parent</artifactId> |
| 10 | + <version>1.0.0.CR2-SNAPSHOT</version> |
| 11 | + <relativePath>../../pom.xml</relativePath> |
| 12 | + </parent> |
| 13 | + <artifactId>a2a-java-sdk-compat-0.3-tests-server-common</artifactId> |
| 14 | + |
| 15 | + <packaging>jar</packaging> |
| 16 | + |
| 17 | + <name>Java A2A Compat 0.3 Server Tests Common</name> |
| 18 | + <description>Java SDK for the Agent2Agent Protocol (A2A) - Compat 0.3 Server Tests Common</description> |
| 19 | + |
| 20 | + <dependencies> |
| 21 | + <dependency> |
| 22 | + <groupId>${project.groupId}</groupId> |
| 23 | + <artifactId>a2a-java-sdk-spec</artifactId> |
| 24 | + </dependency> |
| 25 | + <dependency> |
| 26 | + <groupId>${project.groupId}</groupId> |
| 27 | + <artifactId>a2a-java-sdk-server-common</artifactId> |
| 28 | + </dependency> |
| 29 | + <dependency> |
| 30 | + <groupId>jakarta.enterprise</groupId> |
| 31 | + <artifactId>jakarta.enterprise.cdi-api</artifactId> |
| 32 | + <scope>provided</scope> |
| 33 | + </dependency> |
| 34 | + <dependency> |
| 35 | + <groupId>io.quarkus</groupId> |
| 36 | + <artifactId>quarkus-arc</artifactId> |
| 37 | + <scope>provided</scope> |
| 38 | + </dependency> |
| 39 | + </dependencies> |
| 40 | + |
| 41 | + <build> |
| 42 | + <plugins> |
| 43 | + <plugin> |
| 44 | + <groupId>org.sonatype.central</groupId> |
| 45 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 46 | + <extensions>true</extensions> |
| 47 | + <configuration> |
| 48 | + <skipPublishing>true</skipPublishing> |
| 49 | + </configuration> |
| 50 | + </plugin> |
| 51 | + </plugins> |
| 52 | + </build> |
| 53 | +</project> |
0 commit comments