diff --git a/README.md b/README.md index ba717c7b..c78acb55 100644 --- a/README.md +++ b/README.md @@ -78,7 +78,7 @@ This is required by Github in order to import the package, even if it's from a p After that add to the dependencies in the app's `build.gradle.kts`: ```kotlin -implementation("io.zenoh:zenoh-kotlin-android:1.0.0") +implementation("org.eclipse.zenoh:zenoh-kotlin-android:1.0.0") ``` ### Platforms diff --git a/zenoh-kotlin/build.gradle.kts b/zenoh-kotlin/build.gradle.kts index f1f9ef43..b781d4e8 100644 --- a/zenoh-kotlin/build.gradle.kts +++ b/zenoh-kotlin/build.gradle.kts @@ -98,7 +98,7 @@ kotlin { publishing { publications.withType { - groupId = "io.zenoh" + groupId = "org.eclipse.zenoh" artifactId = "zenoh-kotlin" version = project.version.toString() + if (project.hasProperty("SNAPSHOT")) "-SNAPSHOT" else ""