kmath/docs/templates/ARTIFACT-TEMPLATE.md

29 lines
687 B
Markdown
Raw Normal View History

> #### Artifact:
2020-09-25 10:13:38 +03:00
> This module artifact: `${group}:${name}:${version}`.
>
> **Gradle:**
>
> ```gradle
> repositories {
2020-09-20 22:39:27 +03:00
> maven { url 'https://dl.bintray.com/mipt-npm/kscience' }
> maven { url 'https://dl.bintray.com/mipt-npm/dev' }
> maven { url https://dl.bintray.com/hotkeytlt/maven' }
> }
>
> dependencies {
2020-09-25 10:13:38 +03:00
> implementation '${group}:${name}:${version}'
> }
> ```
> **Gradle Kotlin DSL:**
>
> ```kotlin
> repositories {
2020-09-20 22:39:27 +03:00
> maven("https://dl.bintray.com/mipt-npm/kscience")
> maven("https://dl.bintray.com/mipt-npm/dev")
> maven("https://dl.bintray.com/hotkeytlt/maven")
> }
>
2020-09-20 22:39:27 +03:00
> dependencies {
2020-09-25 10:13:38 +03:00
> implementation("${group}:${name}:${version}")
> }
2020-09-25 10:13:38 +03:00
> ```