From cdcec4bc08e76298bca842208209c1fe7cb08597 Mon Sep 17 00:00:00 2001 From: Colt Frederickson Date: Mon, 20 Nov 2023 10:24:21 -0700 Subject: [PATCH] Kotlin: remove unused deps and update others (#11) --- kotlin/build.gradle.kts | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/kotlin/build.gradle.kts b/kotlin/build.gradle.kts index 6732f96..eefecf4 100644 --- a/kotlin/build.gradle.kts +++ b/kotlin/build.gradle.kts @@ -34,15 +34,8 @@ dependencies { // Use the JUnit 5 integration. testImplementation("org.junit.jupiter:junit-jupiter-engine:5.9.1") implementation("net.java.dev.jna:jna:5.13.0") - implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4") + implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3") implementation("org.jetbrains.kotlin:kotlin-scripting-jvm") - - // This dependency is exported to consumers, that is to say found on their compile classpath. - api("org.apache.commons:commons-math3:3.6.1") - - // This dependency is used internally, and not exposed to consumers on their own compile - // classpath. - implementation("com.google.guava:guava:31.1-jre") } java {