diff --git a/README.md b/README.md
index f8bb048e..ee8b80e8 100644
--- a/README.md
+++ b/README.md
@@ -76,7 +76,10 @@ Zenoh is a communications protocol, therefore the permissions required are:
##
JVM
-First add the Maven central repository to your `settings.gradle.kts`:
+The Zenoh library can be added as both a Gradle dependency or a Maven dependency.
+
+### Gradle
+To import the library as a Gradle dependency, add the Maven central repository to your `settings.gradle.kts`:
```kotlin
dependencyResolutionManagement {
@@ -92,6 +95,27 @@ After that add to the dependencies in the app's `build.gradle.kts`:
```kotlin
implementation("org.eclipse.zenoh:zenoh-java-jvm:1.1.1")
```
+### Maven Dependency
+
+To add the library in a Maven project, add it as a dependency under the tag in the project's `pom.xml`:
+
+```xml
+
+
+
+
+
+ org.eclipse.zenoh
+ zenoh-java
+ 1.9.0
+
+
+
+```
+Thereafter, recompile the project with the added dependency:
+```bash
+ mvn package
+```
### Platforms