visionforge/docs/templates/ARTIFACT-TEMPLATE.md

15 lines
266 B
Markdown
Raw Normal View History

2022-01-07 12:29:43 +03:00
## Artifact:
The Maven coordinates of this project are `${group}:${name}:${version}`.
**Gradle Kotlin DSL:**
```kotlin
repositories {
maven("https://repo.kotlin.link")
mavenCentral()
}
dependencies {
implementation("${group}:${name}:${version}")
}
```