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