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