From 576d5efb46fc581d42c501ba2ca7227b88566388 Mon Sep 17 00:00:00 2001 From: breandan Date: Sun, 29 Nov 2020 12:30:30 -0500 Subject: [PATCH] downgrade ejml and update readme --- README.md | 6 ++---- core/build.gradle.kts | 2 +- samples/build.gradle.kts | 1 - 3 files changed, 3 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index dc9c0b42..f850b199 100644 --- a/README.md +++ b/README.md @@ -77,14 +77,12 @@ Kotlin∇ is hosted on [JitPack](https://jitpack.io/#breandan/kotlingrad). ```kotlin repositories { - mavenCentral() jcenter() maven("https://jitpack.io") - maven("https://dl.bintray.com/egor-bogomolov/astminer") } dependencies { - implementation("com.github.breandan:kotlingrad:0.3.7") + implementation("com.github.breandan:kotlingrad:0.4.0") } ``` @@ -102,7 +100,7 @@ dependencies { com.github.breandan kotlingrad - 0.3.7 + 0.4.0 ``` diff --git a/core/build.gradle.kts b/core/build.gradle.kts index 4975448f..45d7628d 100644 --- a/core/build.gradle.kts +++ b/core/build.gradle.kts @@ -16,7 +16,7 @@ idea.module { dependencies { // implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.0") - implementation("com.github.breandan:kaliningraph") + api("com.github.breandan:kaliningraph") // Mathematical libraries implementation("ch.obermuhlner:big-math:2.3.0") diff --git a/samples/build.gradle.kts b/samples/build.gradle.kts index b3ef6569..22daa604 100644 --- a/samples/build.gradle.kts +++ b/samples/build.gradle.kts @@ -20,7 +20,6 @@ dependencies { implementation("com.github.lejon.T-SNE-Java:tsne:master-SNAPSHOT") implementation("org.jetbrains.lets-plot-kotlin:lets-plot-kotlin-api:1.1.0") implementation("io.github.vovak.astminer:astminer:0.6") - implementation("com.github.breandan:kaliningraph") implementation("org.nield:kotlin-statistics:1.2.1") }