diff --git a/README.md b/README.md index 155277c1..5198591c 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ repositories { } dependencies { - implementation 'org.maplibre.android:{PLUGIN_NAME}-v{MAJOR_MAPS_SDK_VERSION_NUMBER}:PLUGIN_VERSION_NUMBER' + implementation 'org.maplibre.gl:android-{PLUGIN_NAME}-v{MAJOR_MAPS_SDK_VERSION_NUMBER}:PLUGIN_VERSION_NUMBER' } ``` diff --git a/plugin-annotation/README.md b/plugin-annotation/README.md index 7d2df6f1..7c30eaa0 100644 --- a/plugin-annotation/README.md +++ b/plugin-annotation/README.md @@ -17,34 +17,19 @@ repositories { ``` +Add [the latest version](https://central.sonatype.com/artifact/org.maplibre.gl/android-plugin-annotation-v9/versions) as a dependency to your project. + In the app-level `build.gradle` file: ```groovy dependencies { - implementation 'org.maplibre.gl:android-plugin-annotation-v9:3.0.1' + implementation 'org.maplibre.gl:android-plugin-annotation-v9:3.0.2' } ``` ```kotlin dependencies { - implementation("org.maplibre.gl:android-plugin-annotation-v9:3.0.1") -} -``` - -The annotation plugin is published to Maven Central and nightly SNAPSHOTs are available on Sonatype: - -``` -// In the root build.gradle file -repositories { - mavenCentral() - maven { url "http://oss.sonatype.org/content/repositories/snapshots/" } -} - -... - -// In the app build.gradle file -dependencies { - implementation 'com.maplibre.maplibresdk:maplibre-android-plugin-annotation-v9:0.10.0-SNAPSHOT' + implementation("org.maplibre.gl:android-plugin-annotation-v9:3.0.2") } ``` diff --git a/plugin-building/README.md b/plugin-building/README.md index 57dd9b05..aabe329a 100644 --- a/plugin-building/README.md +++ b/plugin-building/README.md @@ -10,34 +10,28 @@ This plugin is currently unmaintained. To use the building plugin you include it in your `build.gradle` file. -``` -// In the root build.gradle file +In the root `build.gradle` file: + +```groovy repositories { mavenCentral() } -... - -// In the app build.gradle file -dependencies { - implementation 'com.maplibre.maplibresdk:maplibre-android-plugin-building-v9:0.7.0' -} ``` -The building plugins is published to Maven Central and nightly SNAPSHOTs are available on Sonatype: +Add [the latest version](https://central.sonatype.com/artifact/org.maplibre.gl/android-plugin-building-v9/versions) as a dependency to your project. -``` -// In the root build.gradle file -repositories { - mavenCentral() - maven { url "http://oss.sonatype.org/content/repositories/snapshots/" } -} +In the app-level `build.gradle` file: -... +```groovy +dependencies { + implementation 'org.maplibre.gl:android-plugin-building-v9:3.0.2' +} +``` -// In the app build.gradle file +```kotlin dependencies { - implementation 'com.maplibre.maplibresdk:maplibre-android-plugin-building-v9:0.8.0-SNAPSHOT' + implementation("org.maplibre.gl:android-plugin-building-v9:3.0.2") } ``` diff --git a/plugin-localization/README.md b/plugin-localization/README.md index eacfbd83..d54390f2 100644 --- a/plugin-localization/README.md +++ b/plugin-localization/README.md @@ -10,36 +10,28 @@ This plugin is currently unmaintained. To use the localization plugin, you include it in your `build.gradle` file. -```gradle -// In the root build.gradle file +In the root `build.gradle` file: + +```groovy repositories { mavenCentral() - google() } -... - -// In the app build.gradle file -dependencies { - implementation 'com.maplibre.maplibresdk:maplibre-android-plugin-localization-v9:0.12.0' -} ``` -The location layer plugin is published to Maven Central and nightly SNAPSHOTs are available on Sonatype: +Add [the latest version](https://central.sonatype.com/artifact/org.maplibre.gl/android-plugin-localization-v9/versions) as a dependency to your project. -```gradle -// In the root build.gradle file -repositories { - mavenCentral() - google() - maven { url "http://oss.sonatype.org/content/repositories/snapshots/" } -} +In the app-level `build.gradle` file: -... +```groovy +dependencies { + implementation 'org.maplibre.gl:android-plugin-localization-v9:3.0.2' +} +``` -// In the app build.gradle file +```kotlin dependencies { - implementation 'com.maplibre.maplibresdk:maplibre-android-plugin-localization-v9:0.13.0-SNAPSHOT' + implementation("org.maplibre.gl:android-plugin-localization-v9:3.0.2") } ``` diff --git a/plugin-markerview/README.md b/plugin-markerview/README.md index f62f3af5..c956e962 100644 --- a/plugin-markerview/README.md +++ b/plugin-markerview/README.md @@ -12,34 +12,28 @@ Please be aware that Android views are the less performant and less customizable To use the MarkerView plugin, you include its dependency in your `build.gradle` file. -``` -// In the root build.gradle file +In the root `build.gradle` file: + +```groovy repositories { mavenCentral() } -... - -// In the app build.gradle file -dependencies { - implementation 'com.maplibre.maplibresdk:maplibre-android-plugin-markerview-v9:0.4.0' -} ``` -The MarkerView plugin is published to Maven Central and nightly SNAPSHOTs are available on Sonatype: +Add [the latest version](https://central.sonatype.com/artifact/org.maplibre.gl/android-plugin-markerview-v9/versions) as a dependency to your project. -``` -// In the root build.gradle file -repositories { - mavenCentral() - maven { url "http://oss.sonatype.org/content/repositories/snapshots/" } -} +In the app-level `build.gradle` file: -... +```groovy +dependencies { + implementation 'org.maplibre.gl:android-plugin-markerview-v9:3.0.2' +} +``` -// In the app build.gradle file +```kotlin dependencies { - implementation 'com.maplibre.maplibresdk:maplibre-android-plugin-markerview-v9:0.5.0-SNAPSHOT' + implementation("org.maplibre.gl:android-plugin-markerview-v9:3.0.2") } ``` diff --git a/plugin-offline/README.md b/plugin-offline/README.md index 4de13c15..5782b95b 100644 --- a/plugin-offline/README.md +++ b/plugin-offline/README.md @@ -10,34 +10,28 @@ This plugin is currently unmaintained. To use the offline plugin you include it in your `build.gradle` file. -``` -// In the root build.gradle file +In the root `build.gradle` file: + +```groovy repositories { mavenCentral() } -... - -// In the app build.gradle file -dependencies { - implementation 'com.maplibre.maplibresdk:maplibre-android-plugin-offline-v9:0.7.0' -} ``` -The marker cluster plugin is published to Maven Central and nightly SNAPSHOTs are available on Sonatype: +Add [the latest version](https://central.sonatype.com/artifact/org.maplibre.gl/android-plugin-offline-v9/versions) as a dependency to your project. -``` -// In the root build.gradle file -repositories { - mavenCentral() - maven { url "http://oss.sonatype.org/content/repositories/snapshots/" } -} +In the app-level `build.gradle` file: -... +```groovy +dependencies { + implementation 'org.maplibre.gl:android-plugin-offline-v9:3.0.2' +} +``` -// In the app build.gradle file +```kotlin dependencies { - implementation 'com.maplibre.maplibresdk:maplibre-android-plugin-offline-v9:0.8.0-SNAPSHOT' + implementation("org.maplibre.gl:android-plugin-offline-v9:3.0.2") } ``` diff --git a/plugin-scalebar/README.md b/plugin-scalebar/README.md index a0779005..d5ceafa7 100644 --- a/plugin-scalebar/README.md +++ b/plugin-scalebar/README.md @@ -10,34 +10,28 @@ This plugin is currently unmaintained. To use the scale bar plugin, you include it in your `build.gradle` file. -``` -// In the root build.gradle file +In the root `build.gradle` file: + +```groovy repositories { mavenCentral() } -... - -// In the app build.gradle file -dependencies { - implementation 'com.maplibre.maplibresdk:maplibre-android-plugin-scalebar-v9:0.5.0' -} ``` -The scale bar plugin is published to Maven Central and nightly SNAPSHOTs are available on Sonatype: +Add [the latest version](https://central.sonatype.com/artifact/org.maplibre.gl/android-plugin-scalebar-v9/versions) as a dependency to your project. -``` -// In the root build.gradle file -repositories { - mavenCentral() - maven { url "http://oss.sonatype.org/content/repositories/snapshots/" } -} +In the app-level `build.gradle` file: -... +```groovy +dependencies { + implementation 'org.maplibre.gl:android-plugin-scalebar-v9:3.0.2' +} +``` -// In the app build.gradle file +```kotlin dependencies { - implementation 'com.maplibre.maplibresdk:maplibre-android-plugin-scalebar-v9:0.6.0-SNAPSHOT' + implementation("org.maplibre.gl:android-plugin-scalebar-v9:3.0.2") } ```