Skip to content

Commit

Permalink
fix: update groupdId for maven publication (#305)
Browse files Browse the repository at this point in the history
* fix: update groupdId for maven publication

* chore: update README
  • Loading branch information
diogomatsubara authored Nov 22, 2024
1 parent 4f68561 commit 7847bd9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion zenoh-kotlin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ kotlin {

publishing {
publications.withType<MavenPublication> {
groupId = "io.zenoh"
groupId = "org.eclipse.zenoh"
artifactId = "zenoh-kotlin"
version = project.version.toString() + if (project.hasProperty("SNAPSHOT")) "-SNAPSHOT" else ""

Expand Down

0 comments on commit 7847bd9

Please sign in to comment.