Skip to content

Commit 1a28be0

Browse files
committed
Update maven dependency sections in the README
1 parent c9c34a1 commit 1a28be0

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,14 @@ The A2A Java SDK provides a Java server implementation of the [Agent2Agent (A2A)
2929

3030
### 1. Add the A2A Java SDK Core Maven dependency to your project
3131

32+
> **Note**: The A2A Java SDK isn't available yet in Maven Central but will be soon. For now, be
33+
> sure to check out the latest tag (you can see the tags [here](https://github.com/fjuma/a2a-java-sdk/tags)), build from the tag, and reference that version below. For example, if the latest tag is `0.2.3`, you can use the following dependency.
34+
3235
```xml
3336
<dependency>
3437
<groupId>io.a2a.sdk</groupId>
3538
<artifactId>a2a-java-sdk-core</artifactId>
36-
<version>${io.a2a.sdk.version}</version>
39+
<version>0.2.3</version>
3740
</dependency>
3841
```
3942

@@ -222,6 +225,9 @@ public class WeatherAgentExecutorProducer {
222225

223226
### 4. Add an A2A Java SDK Server Maven dependency to your project
224227

228+
> **Note**: The A2A Java SDK isn't available yet in Maven Central but will be soon. For now, be
229+
> sure to check out the latest tag (you can see the tags [here](https://github.com/fjuma/a2a-java-sdk/tags)), build from the tag, and reference that version below. For example, if the latest tag is `0.2.3`, you can use the following dependency.
230+
225231
Adding a dependency on an A2A Java SDK Server will allow you to run your agentic Java application as an A2A server.
226232

227233
The A2A Java SDK provides two A2A server endpoint implementations, one based on Jakarta REST (`a2a-java-sdk-server-jakarta`) and one based on Quarkus Reactive Routes (`a2a-java-sdk-server-quarkus`). You can choose the one that best fits your application.

0 commit comments

Comments
 (0)