kmath/docs/templates/ARTIFACT-TEMPLATE.md

40 lines
1.5 KiB
Markdown
Raw Normal View History

> #### 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)
>
> **Gradle:**
>
> ```gradle
> repositories {
2021-02-19 10:52:56 +03:00
> maven { url 'https://repo.kotlin.link' }
2020-09-26 12:15:11 +03:00
> maven { url 'https://dl.bintray.com/hotkeytlt/maven' }
2021-02-19 10:52:56 +03:00
> maven { url "https://dl.bintray.com/kotlin/kotlin-eap" } // include for builds based on kotlin-eap
>// Uncomment if repo.kotlin.link is unavailable
>// maven { url 'https://dl.bintray.com/mipt-npm/kscience' }
>// maven { url 'https://dl.bintray.com/mipt-npm/dev' }
> }
>
> dependencies {
2020-09-25 10:13:38 +03:00
> implementation '${group}:${name}:${version}'
> }
> ```
> **Gradle Kotlin DSL:**
>
> ```kotlin
> repositories {
2021-02-19 10:52:56 +03:00
> maven("https://repo.kotlin.link")
> maven("https://dl.bintray.com/kotlin/kotlin-eap") // include for builds based on kotlin-eap
> maven("https://dl.bintray.com/hotkeytlt/maven") // required for a
>// Uncomment if repo.kotlin.link is unavailable
>// maven("https://dl.bintray.com/mipt-npm/kscience")
>// maven("https://dl.bintray.com/mipt-npm/dev")
> }
>
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
> ```