kmath/kmath-core/docs/README-STUB.md

35 lines
765 B
Markdown
Raw Normal View History

2020-09-06 19:03:24 +03:00
# The Core Module (`kmath-core`)
The core features of KMath:
2020-09-21 15:47:47 +03:00
$featuresString
> #### Artifact:
2020-09-21 15:47:47 +03:00
> This module artifact: `$group:kmath-core:$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-21 15:47:47 +03:00
> implementation '$group:kmath-core:$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-21 15:47:47 +03:00
> implementation("$group:kmath-core:$version")
> }
> ```