From 1167c7d619963c9b30a134b1091b0ca74a10d28b Mon Sep 17 00:00:00 2001 From: "B. K. Oxley (binkley)" Date: Mon, 11 Sep 2023 07:30:52 -0500 Subject: [PATCH] Match dependencies to Kotlin 1.9 recommendations (#7) * Maintainer tasks Add the "versions" plugin to help maintainers keep the repo dependencies up to date. * Fix local build With current Kotlin, the dependency for JVM projects is "kotlin-test-junit". Do not pin the stdlib to Java 8. --- build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 0e039d3..8f25976 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -23,7 +23,7 @@ repositories { } dependencies { - implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version") + implementation("org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version") implementation("io.ktor:ktor-server-netty:$ktor_version") implementation("ch.qos.logback:logback-classic:$logback_version") implementation("io.ktor:ktor-server-core:$ktor_version") @@ -32,7 +32,7 @@ dependencies { implementation("com.fasterxml.jackson.datatype:jackson-datatype-jsr310:$jackson_version") - testImplementation("org.jetbrains.kotlin:kotlin-test:$kotlin_version") + testImplementation("org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version") testImplementation("io.ktor:ktor-server-tests:$ktor_version") testImplementation("io.strikt:strikt-core:$strikt_version") testImplementation("io.ktor:ktor-client-content-negotiation:$ktor_version")