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

762 B

The Core Module (kmath-core)

The core features of KMath: $features

Artifact:

This module artifact: ${group}:${name}:${version}.

Gradle:

repositories {
    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 {
    implementation '${group}:${name}:${version}'
}

Gradle Kotlin DSL:

repositories {
    maven("https://dl.bintray.com/mipt-npm/kscience")
    maven("https://dl.bintray.com/mipt-npm/dev")
    maven("https://dl.bintray.com/hotkeytlt/maven")
}

dependencies {
    implementation("${group}:${name}:${version}")
}