2020-08-08 11:51:04 +03:00
|
|
|
> #### Artifact:
|
2020-09-26 13:57:24 +03:00
|
|
|
>
|
2020-09-25 10:13:38 +03:00
|
|
|
> This module artifact: `${group}:${name}:${version}`.
|
|
|
|
>
|
2020-09-26 13:57:24 +03:00
|
|
|
> 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)
|
|
|
|
>
|
2020-08-08 11:51:04 +03:00
|
|
|
> **Gradle:**
|
|
|
|
>
|
|
|
|
> ```gradle
|
|
|
|
> repositories {
|
2020-09-27 19:57:30 +03:00
|
|
|
> maven { url "https://dl.bintray.com/kotlin/kotlin-eap" }
|
2020-09-20 22:39:27 +03:00
|
|
|
> maven { url 'https://dl.bintray.com/mipt-npm/kscience' }
|
2020-08-08 11:51:04 +03:00
|
|
|
> maven { url 'https://dl.bintray.com/mipt-npm/dev' }
|
2020-09-26 12:15:11 +03:00
|
|
|
> maven { url 'https://dl.bintray.com/hotkeytlt/maven' }
|
2021-01-05 16:15:50 +03:00
|
|
|
>
|
2020-08-08 11:51:04 +03:00
|
|
|
> }
|
|
|
|
>
|
|
|
|
> dependencies {
|
2020-09-25 10:13:38 +03:00
|
|
|
> implementation '${group}:${name}:${version}'
|
2020-08-08 11:51:04 +03:00
|
|
|
> }
|
|
|
|
> ```
|
|
|
|
> **Gradle Kotlin DSL:**
|
|
|
|
>
|
|
|
|
> ```kotlin
|
|
|
|
> repositories {
|
2020-09-27 19:57:30 +03:00
|
|
|
> maven("https://dl.bintray.com/kotlin/kotlin-eap")
|
2020-09-20 22:39:27 +03:00
|
|
|
> maven("https://dl.bintray.com/mipt-npm/kscience")
|
2020-08-08 11:51:04 +03:00
|
|
|
> 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-08-08 11:51:04 +03:00
|
|
|
> }
|
2020-09-25 10:13:38 +03:00
|
|
|
> ```
|