kmath/kmath-histograms/README.md

33 lines
535 B
Markdown
Raw Permalink Normal View History

2022-03-31 22:23:34 +03:00
# Module kmath-histograms
## Usage
## Artifact:
The Maven coordinates of this project are `space.kscience:kmath-histograms:0.4.0-dev-1`.
2022-03-31 22:23:34 +03:00
**Gradle Groovy:**
```groovy
repositories {
maven { url 'https://repo.kotlin.link' }
mavenCentral()
}
dependencies {
implementation 'space.kscience:kmath-histograms:0.4.0-dev-1'
2022-03-31 22:23:34 +03:00
}
```
**Gradle Kotlin DSL:**
```kotlin
repositories {
maven("https://repo.kotlin.link")
mavenCentral()
}
dependencies {
implementation("space.kscience:kmath-histograms:0.4.0-dev-1")
2022-03-31 22:23:34 +03:00
}
```