This is an automated email from the ASF dual-hosted git repository.
maciej pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iggy.git
The following commit(s) were added to refs/heads/master by this push:
new 4731079d4 chore(docs): update Java SDK info (#2471)
4731079d4 is described below
commit 4731079d4f2375f57cf3e2c7c6e96e530b2f265f
Author: Maciej Modzelewski <[email protected]>
AuthorDate: Thu Dec 11 10:23:17 2025 +0100
chore(docs): update Java SDK info (#2471)
---
README.md | 2 +-
foreign/java/README.md | 40 +++++++++++++++++++++++++++++++++++++++-
2 files changed, 40 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
index 412ed0de4..3718f2931 100644
--- a/README.md
+++ b/README.md
@@ -107,7 +107,7 @@ We do also publish edge/dev/nightly releases (e.g.
`0.6.0-edge.1` or `apache/igg
- [Rust](https://crates.io/crates/iggy)
- [C#](https://www.nuget.org/packages/Apache.Iggy/)
-- [Java](https://mvnrepository.com/artifact/org.apache.iggy/iggy-java-sdk)
+- [Java](https://mvnrepository.com/artifact/org.apache.iggy/iggy)
- [Python](https://pypi.org/project/apache-iggy/)
- [Node.js (TypeScript)](https://www.npmjs.com/package/apache-iggy)
- [Go](https://pkg.go.dev/github.com/apache/iggy/foreign/go)
diff --git a/foreign/java/README.md b/foreign/java/README.md
index 014f850d7..396dff821 100644
--- a/foreign/java/README.md
+++ b/foreign/java/README.md
@@ -24,7 +24,45 @@ implementation 'org.apache.iggy:iggy:0.6.0'
</dependency>
```
-Find the latest version on [Maven
Repository](https://mvnrepository.com/artifact/org.apache.iggy/iggy-java-sdk).
+Find the latest version on [Maven
Repository](https://mvnrepository.com/artifact/org.apache.iggy/iggy).
+
+### Snapshot Versions
+
+Snapshot versions are also available through the ASF snapshot repository:
+
+**Gradle:**
+
+```gradle
+repositories {
+ maven {
+ url =
uri("https://repository.apache.org/content/repositories/snapshots/")
+ }
+}
+
+dependencies {
+ implementation 'org.apache.iggy:iggy:0.6.1-SNAPSHOT'
+}
+```
+
+**Maven:**
+
+```xml
+<repositories>
+ <repository>
+ <id>apache-snapshots</id>
+
<url>https://repository.apache.org/content/repositories/snapshots/</url>
+ <snapshots>
+ <enabled>true</enabled>
+ </snapshots>
+ </repository>
+</repositories>
+
+<dependency>
+ <groupId>org.apache.iggy</groupId>
+ <artifactId>iggy</artifactId>
+ <version>0.6.1-SNAPSHOT</version>
+</dependency>
+```
## Examples