kmath/kmath-commons
2022-04-01 02:23:34 +07:00
..
src Update gradle-tools, do Kotlin 1.6.0 migrations 2021-11-24 15:32:06 +07:00
build.gradle.kts QOW is working more or less 2021-08-16 09:55:03 +03:00
README.md Upgrade gradle tools 2022-04-01 02:23:34 +07:00

Module kmath-commons

Commons math binding for kmath

Usage

Artifact:

The Maven coordinates of this project are space.kscience:kmath-commons:0.3.0-dev-20.

Gradle Groovy:

repositories {
    maven { url 'https://repo.kotlin.link' }
    mavenCentral()
}

dependencies {
    implementation 'space.kscience:kmath-commons:0.3.0-dev-20'
}

Gradle Kotlin DSL:

repositories {
    maven("https://repo.kotlin.link")
    mavenCentral()
}

dependencies {
    implementation("space.kscience:kmath-commons:0.3.0-dev-20")
}