maps-kt/maps-kt-core
2023-10-01 14:05:03 +03:00
..
api Prepare for 0.2.2 release 2023-05-06 15:39:58 +03:00
docs Attribute serialization 2023-01-12 11:52:54 +03:00
src Full refactor of map state 2023-09-10 13:12:45 +03:00
build.gradle.kts Add (not working yet) JS implementation 2023-10-01 14:05:03 +03:00
README.md Prepare for 0.2.2 release 2023-05-06 15:39:58 +03:00

Module kmath-core

The core interfaces of KMath.

Artifact:

The Maven coordinates of this project are center.sciprog:maps-kt-core:0.2.2.

Gradle Groovy:

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

dependencies {
    implementation 'center.sciprog:maps-kt-core:0.2.2'
}

Gradle Kotlin DSL:

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

dependencies {
    implementation("center.sciprog:maps-kt-core:0.2.2")
}