Skip to content

Commit c2891b4

Browse files
committed
Rename a2a-java-sdk-jakarta to a2a-java-sdk-jakarta-jsonrpc
1 parent fc074cc commit c2891b4

File tree

6 files changed

+9
-7
lines changed

6 files changed

+9
-7
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ The [tck/pom.xml](./tck/pom.xml) is a good example of how to package an A2A appl
2828

2929
In this case we have the following dependencies:
3030

31-
* `org.wildfly.extras.a2a:a2a-java-sdk-jakarta` - this is the main dependency which transitively pulls in all the dependencies from the A2A Java SDK project.
31+
* `org.wildfly.a2a:a2a-java-sdk-jakarta-jsonrpc` - this is the main dependency which transitively pulls in all the dependencies from the A2A Java SDK project.
3232
* Since some of these dependencies are provided by WildFly already, we exclude those so they do not become part of the `.war`, in order to avoid inconsistencies.
33-
* `jakarta.ws.rs:jakarta.ws.rs-api` - this is not part of the dependencies brought in via `org.wildfly.extras.a2a:a2a-java-sdk-jakarta` but is needed to compile the TCK module. Since it is provided by WildFly, we make the scope `provided` so it is not included in the `.war`.
33+
* `jakarta.ws.rs:jakarta.ws.rs-api` - this is not part of the dependencies brought in via `org.wildfly.a2a:a2a-java-sdk-jakarta-jsonrpc` but is needed to compile the TCK module. Since it is provided by WildFly, we make the scope `provided` so it is not included in the `.war`.
3434
* `io.github.a2asdk:a2a-tck-server` - this is the application, which contains the `AgentExecutor` and `AgentCard` implementations for the TCK. In your case, they will most likely be implemented in the project you use to create the `.war`.
35-
* In this case we exclude all transitive dependencies, since we are doing the main dependency management via the `org.wildfly.extras.a2a:a2a-java-sdk-jakarta` dependency.
35+
* In this case we exclude all transitive dependencies, since we are doing the main dependency management via the `org.wildfly.a2a:a2a-java-sdk-jakarta-jsonrpc` dependency.
3636

3737
## Running the TCK
3838

impl/grpc/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
<groupId>org.wildfly.a2a</groupId>
99
<artifactId>a2a-java-sdk-jakarta-parent</artifactId>
1010
<version>0.3.0.Beta1-SNAPSHOT</version>
11+
<relativePath>../../pom.xml</relativePath>
1112
</parent>
1213

1314
<artifactId>a2a-java-sdk-jakarta-grpc</artifactId>

impl/jsonrpc/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,10 @@
88
<groupId>org.wildfly.a2a</groupId>
99
<artifactId>a2a-java-sdk-jakarta-parent</artifactId>
1010
<version>0.3.0.Beta1-SNAPSHOT</version>
11+
<relativePath>../../pom.xml</relativePath>
1112
</parent>
1213

13-
<artifactId>a2a-java-sdk-jakarta</artifactId>
14+
<artifactId>a2a-java-sdk-jakarta-jsonrpc</artifactId>
1415

1516
<packaging>jar</packaging>
1617

tck/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
-->
2424
<dependency>
2525
<groupId>${project.groupId}</groupId>
26-
<artifactId>a2a-java-sdk-jakarta</artifactId>
26+
<artifactId>a2a-java-sdk-jakarta-jsonrpc</artifactId>
2727
<version>${project.version}</version>
2828
<exclusions>
2929
<!--

tests-grpc/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
<!-- Add WildFly Jakarta implementation dependency -->
7272
<dependency>
7373
<groupId>${project.groupId}</groupId>
74-
<artifactId>a2a-java-sdk-jakarta</artifactId>
74+
<artifactId>a2a-java-sdk-jakarta-jsonrpc</artifactId>
7575
<version>${project.version}</version>
7676
<scope>test</scope>
7777
</dependency>

tests/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
</dependency>
3131
<dependency>
3232
<groupId>${project.groupId}</groupId>
33-
<artifactId>a2a-java-sdk-jakarta</artifactId>
33+
<artifactId>a2a-java-sdk-jakarta-jsonrpc</artifactId>
3434
<version>${project.version}</version>
3535
<scope>test</scope>
3636
</dependency>

0 commit comments

Comments
 (0)