dataforge-core/docs/templates/ARTIFACT-TEMPLATE.md

29 lines
638 B
Markdown
Raw Normal View History

2021-02-07 20:58:19 +03:00
> #### Artifact:
>
> This module artifact: `${group}:${name}:${version}`.
>
>
2021-03-03 22:41:33 +03:00
> [![Maven Central](https://img.shields.io/maven-central/v/space.kscience/${name}.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22space.kscience%22%20AND%20a:%22${name}%22)
2021-02-07 20:58:19 +03:00
>
> **Gradle:**
>
> ```gradle
> repositories {
2021-03-03 22:41:33 +03:00
> maven { url 'https://repo.kotlin.link' }
2021-02-07 20:58:19 +03:00
> }
>
> dependencies {
> implementation '${group}:${name}:${version}'
> }
> ```
> **Gradle Kotlin DSL:**
>
> ```kotlin
> repositories {
2021-03-03 22:41:33 +03:00
> maven("https://https://repo.kotlin.link")
2021-02-07 20:58:19 +03:00
> }
>
> dependencies {
> implementation("${group}:${name}:${version}")
> }
> ```