kmath/kmath-coroutines
2022-04-01 02:23:34 +07:00
..
src Update gradle plugin and build consistency 2022-01-04 13:15:50 +03:00
build.gradle.kts Update gradle-tools, do Kotlin 1.6.0 migrations 2021-11-24 15:32:06 +07:00
README.md Upgrade gradle tools 2022-04-01 02:23:34 +07:00

Module kmath-coroutines

Usage

Artifact:

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

Gradle Groovy:

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

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

Gradle Kotlin DSL:

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

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