maps-kt/maps-kt-geojson/README.md

33 lines
513 B
Markdown
Raw Normal View History

2023-01-12 11:52:54 +03:00
# Module maps-kt-geojson
## Usage
## Artifact:
2023-05-06 15:39:58 +03:00
The Maven coordinates of this project are `center.sciprog:maps-kt-geojson:0.2.2`.
2023-01-12 11:52:54 +03:00
**Gradle Groovy:**
```groovy
repositories {
maven { url 'https://repo.kotlin.link' }
mavenCentral()
}
dependencies {
2023-05-06 15:39:58 +03:00
implementation 'center.sciprog:maps-kt-geojson:0.2.2'
2023-01-12 11:52:54 +03:00
}
```
**Gradle Kotlin DSL:**
```kotlin
repositories {
maven("https://repo.kotlin.link")
mavenCentral()
}
dependencies {
2023-05-06 15:39:58 +03:00
implementation("center.sciprog:maps-kt-geojson:0.2.2")
2023-01-12 11:52:54 +03:00
}
```