You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
chore: Get ready to deploy to Maven Central using temporary groupId (#168)
# Description
Thank you for opening a Pull Request!
Before submitting your PR, there are a few things you can do to make
sure it goes smoothly:
- [x] Follow the [`CONTRIBUTING` Guide](../CONTRIBUTING.md).
- [x] Make your Pull Request title in the
<https://www.conventionalcommits.org/> specification.
- Important Prefixes for
[release-please](https://github.com/googleapis/release-please):
- `fix:` which represents bug fixes, and correlates to a
[SemVer](https://semver.org/) patch.
- `feat:` represents a new feature, and correlates to a SemVer minor.
- `feat!:`, or `fix!:`, `refactor!:`, etc., which represent a breaking
change (indicated by the `!`) and will result in a SemVer major.
- [x] Ensure the tests pass
- [x] Appropriate READMEs were updated (if necessary)
Fixes #<issue_number_goes_here> 🦕
---------
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
<!-- Use a released version from https://github.com/a2aproject/a2a-java/releases -->
59
63
<version>${io.a2a.sdk.version}</version>
60
64
</dependency>
61
65
```
@@ -198,10 +202,15 @@ public class WeatherAgentExecutorProducer {
198
202
The A2A Java SDK provides a Java client implementation of the [Agent2Agent (A2A) Protocol](https://google-a2a.github.io/A2A), allowing communication with A2A servers.
199
203
To make use of the Java `A2AClient`, simply add the following dependency:
200
204
205
+
----
206
+
> *⚠️ The `io.github.a2asdk``groupId` below is temporary and will likely change for future releases.*
207
+
----
208
+
201
209
```xml
202
210
<dependency>
203
-
<groupId>io.a2a.sdk</groupId>
211
+
<groupId>io.github.a2asdk</groupId>
204
212
<artifactId>a2a-java-sdk-client</artifactId>
213
+
<!-- Use a released version from https://github.com/a2aproject/a2a-java/releases -->
0 commit comments