forked from kscience/kmath
37 lines
1.2 KiB
Markdown
37 lines
1.2 KiB
Markdown
> #### Artifact:
|
|
>
|
|
> This module artifact: `${group}:${name}:${version}`.
|
|
>
|
|
> Bintray release version: [ ![Download](https://api.bintray.com/packages/mipt-npm/kscience/${name}/images/download.svg) ](https://bintray.com/mipt-npm/kscience/${name}/_latestVersion)
|
|
>
|
|
> Bintray development version: [ ![Download](https://api.bintray.com/packages/mipt-npm/dev/${name}/images/download.svg) ](https://bintray.com/mipt-npm/dev/${name}/_latestVersion)
|
|
>
|
|
> **Gradle:**
|
|
>
|
|
> ```gradle
|
|
> repositories {
|
|
> maven { url "https://dl.bintray.com/kotlin/kotlin-eap" }
|
|
> 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 {
|
|
> implementation '${group}:${name}:${version}'
|
|
> }
|
|
> ```
|
|
> **Gradle Kotlin DSL:**
|
|
>
|
|
> ```kotlin
|
|
> repositories {
|
|
> maven("https://dl.bintray.com/kotlin/kotlin-eap")
|
|
> maven("https://dl.bintray.com/mipt-npm/kscience")
|
|
> maven("https://dl.bintray.com/mipt-npm/dev")
|
|
> maven("https://dl.bintray.com/hotkeytlt/maven")
|
|
> }
|
|
>
|
|
> dependencies {
|
|
> implementation("${group}:${name}:${version}")
|
|
> }
|
|
> ``` |