kmath/docs/templates/ARTIFACT-TEMPLATE.md

16 lines
256 B
Markdown
Raw Permalink Normal View History

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")
mavenCentral()
2021-03-22 14:32:08 +03:00
}
dependencies {
implementation("${group}:${name}:${version}")
}
```