2021-03-22 14:32:08 +03:00
|
|
|
## Artifact:
|
|
|
|
|
|
|
|
The Maven coordinates of this project are `${group}:${name}:${version}`.
|
|
|
|
|
|
|
|
**Gradle:**
|
2024-03-27 09:11:12 +03:00
|
|
|
|
2021-03-22 14:32:08 +03:00
|
|
|
```kotlin
|
|
|
|
repositories {
|
|
|
|
maven("https://repo.kotlin.link")
|
2021-04-28 14:03:28 +03:00
|
|
|
mavenCentral()
|
2021-03-22 14:32:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation("${group}:${name}:${version}")
|
|
|
|
}
|
|
|
|
```
|