maps-kt/docs/templates/ARTIFACT-TEMPLATE.md

17 lines
368 B
Markdown
Raw Normal View History

2023-01-12 11:52:54 +03:00
## Artifact:
The Maven coordinates of this project are `${group}:${name}:${version}`.
**Gradle Kotlin DSL:**
```kotlin
repositories {
maven("https://repo.kotlin.link")
mavenCentral()
// development and snapshot versions
maven("https://maven.pkg.jetbrains.space/spc/p/sci/dev")
}
dependencies {
implementation("${group}:${name}:${version}")
}
```